There are n children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to n.
The i-th child wants to get at least ai candies.
Jzzhu asks childre...
分类:
其他好文 时间:
2014-07-22 22:49:13
阅读次数:
237
#include
#include
#include
#define ZERO 0
const int FIRST_CHAR = '0';
char num[11111][20] ;
typedef struct node
{
struct node *child[20]; /* 存储下一个字符 */
int n; /* 记录当前单词出现的次数 */
}node, *No...
分类:
其他好文 时间:
2014-07-22 08:31:36
阅读次数:
205
在将一个fragment替换到一个frameLayout的时候报错:code: transaction.replace(R.id.fragment_container, fragment2);错误: java.lang.IllegalStateException: The specified chi...
分类:
其他好文 时间:
2014-07-21 08:03:10
阅读次数:
217
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:
其他好文 时间:
2014-07-20 23:13:23
阅读次数:
329
#include
#include
#include
#define ZERO 0
const int FIRST_CHAR = '0';
char num[11111][20] ;
typedef struct node
{
struct node *child[20]; /* 存储下一个字符 */
int n; /* 记录当前单词出现的次数 */
}node, *No...
分类:
其他好文 时间:
2014-07-20 11:32:38
阅读次数:
215
他妹的,敲完了,电脑死机了,全部消失了,又从新打了一遍,。。。这是什么节奏#include
#include
#include
#define ZERO 0
#define ALPH_LEN 26 /* 26个字母 */
const char FIRST_CHAR = 'a';
typedef struct node
{
struct node *child[ALPH_LEN]; ...
分类:
其他好文 时间:
2014-07-20 00:31:16
阅读次数:
286
MFC窗口位置管理详细分析及实例 在一般用MFC编写的程序的窗口客户区中,可能有好几个子窗口(具有WM_CHILD风格的窗口)。上边是工具栏,中间是视图窗口,下边是状态栏。三个窗 口在框架的客户区里和平共处,互不重叠。主框架窗口的尺寸改变了,别的子窗口都能及时调整自己的尺寸以便保持相互位置关系不变,...
分类:
其他好文 时间:
2014-07-19 20:03:47
阅读次数:
236
CSS3的强大,让人惊叹,人们在惊喜之余,又不得不为其艰难的道路感到可惜:好的标准只有得到行业浏览器的良好支持才算得上“标准”。CSS3标 准已提出数年,但是目前能实现她的浏览器并不多,虽然部分浏览器能实现部分规范,但这又有什么用呢?面对更多的兼容性问题,CSSer们只有望洋轻叹。虽 然如此,但有前...
分类:
其他好文 时间:
2014-07-19 15:20:14
阅读次数:
219
Key Value Observer 键值观察者(基于KVC)(观察者设计模式)是一种使对象获取其他对象的特定属性变化的通知机制。 例子:定义一个类Nurse的成员变量有Child *child,类Child有成员变量happyValue;在Nurse类的.m文件中把它自己定义成为Child类ha....
分类:
其他好文 时间:
2014-07-19 09:16:14
阅读次数:
172
最近在编写一个js库采用的是面向对象的思想来进行编写,因此在js继承上有了一定的问题js继承有几种继承方式,分别为原型继承,类似继承,混合继承。原型继承: var child = function(){} var parent = function(){}child.prototype=new p....
分类:
Web程序 时间:
2014-07-18 14:02:45
阅读次数:
261