1. 显示dname和loc中间用-分隔
Select dname ||’-‘|| loc From dept;
2. 将部门名称左填充为10位
Select lpad( dname,10) From dept;
3. 将员工名字的‘S’,替换为‘s’
Select replace(ename,’S’,’s’) From emp;
4. 求员工名...
分类:
数据库 时间:
2014-10-12 14:04:18
阅读次数:
484
本题用二分搜索可以很容易的求出答案。设条件C(X)为可以得到K条长度为X的绳子,C(x)=(floor(L(i)/x))。X的初始范围为(0,Max(L(i))+1)。
#include
#include
#include
#include
#include
using namespace std;
double a[10005];
int n,k;
void solve(double l,...
分类:
其他好文 时间:
2014-10-12 13:30:48
阅读次数:
221
MainActivity如下:
package cc.cn;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.util.Log;
import android.app.Activity;
/**
*...
分类:
其他好文 时间:
2014-10-12 12:57:18
阅读次数:
286
1. 黑天鹅现象,黑天鹅现象具有三个特点:不可预测性,影响重大,事后可解释。
2.我们不断根据事件发生之后我们觉得有道理的逻辑重新叙述过去的事件。
3.避免叙述错误的办法就是强调实验而非讲故事,强调体验而非历史,强调客观知识而非理论。
4.那些我们没有看到的结果可能,不,是通常更具有意义。
5.我们冒险通常不是出于自信,而是出于无知和对不确定性的无视!
6.我们在对随机事件的认识上容易...
分类:
其他好文 时间:
2014-10-12 12:40:18
阅读次数:
204
大意就是求 log10(n!) = log10(1 * 2 * 3 * .......*n) = log10(1) + log10(2)...
分类:
其他好文 时间:
2014-10-12 13:46:48
阅读次数:
257
本文介绍了GNU许可证、GPL的历史、版本以及详细条件,相信读者看了本文后对GNU GPL会有更深的认识。...
分类:
其他好文 时间:
2014-10-12 14:03:08
阅读次数:
277
单例模式是比较常用的设计模式,他的主要功能是该类只能产生一个对象,即每次使用该类的对象使用的是同一个对象。这个对象由该类自己产生,同时由该类向系统提供。
下面看他的一种具体实现
package single;
public class Danli {
private static Danli dan = null;
private Danli(){
//可以对初始对象进行一些相应...
分类:
其他好文 时间:
2014-10-12 13:29:28
阅读次数:
193
参考网址:
点击打开链接
源码实现:
package com.example.actionbardemo2;
import android.app.ActionBar;
import android.app.ActionBar.Tab;
import android.graphics.Color;
import android.graphics.drawable.ColorDraw...
分类:
移动开发 时间:
2014-10-12 13:45:58
阅读次数:
226
??
在cocos2d-x中,精灵CCSprite是整个游戏开发处理的主要对象,例如天上的飞机、地上的坦克、玩家控制的任务等等都是精灵。甚至天上随机飘过的一朵白云、飞过的一只鸟也都是精灵。实际上,精灵就是一个可以不断变化的图片,变化包括位置变化、旋转、放大、运动等等。
可见,精灵在游戏中是十分重要的组成部分,随处可见。在cocos2d-x中,要用到图片展示的,基本上会使用到精灵类,CC...
分类:
其他好文 时间:
2014-10-12 12:22:28
阅读次数:
295
Pow(x, n)
Total Accepted: 25273 Total
Submissions: 97470My Submissions
Implement pow(x, n).
题意:求x的n次幂
思路:二分法
n有可能是负的或正的
当n为负是,pow(x, n) = 1/pow(x, -n)
x^n = x^{n/2} *...
分类:
其他好文 时间:
2014-10-12 13:28:58
阅读次数:
169
Problem
You receive a credit C at a local store and would like to buy two items. You first walk through the store and create a list L of
all available items. From this list you would like to buy tw...
分类:
其他好文 时间:
2014-10-12 12:38:28
阅读次数:
241
Problem
The Latin alphabet contains 26 characters and telephones only have ten digits on the keypad. We would like to make it easier to write a message to your friend using a sequence of keypresses t...
分类:
其他好文 时间:
2014-10-12 12:54:58
阅读次数:
163
Problem
Given a list of space separated words, reverse the order of the words. Each line of text contains L letters and W words.
A line will only consist of letters and space characters. There will...
分类:
其他好文 时间:
2014-10-12 13:11:28
阅读次数:
133
1.AVI文件
AVI是音频视频交错的英文缩写,它是微软公司开发的一种符合RIFF文件规范的数字音频与视频文件格式,是将音频与视频同步组合在一起的文件格式,他对视频文件采用了一种有损压缩方式.
2.WMV文件
WMV也是微软公司推出的一种流媒体格式,在同等视频质量下,WMV格式的体积非常小,因此很适合在网上播放和传输.
3.RMVB文件
RMVB是一种视频文件格式,RMV...
分类:
其他好文 时间:
2014-10-12 13:27:58
阅读次数:
193