DescriptionIn the army, a platoon is composed by n soldiers. During the morning inspection, the soldiers are aligned in a straight line in front of th...
分类:
其他好文 时间:
2014-07-27 22:20:09
阅读次数:
254
http://www.gamedev.net/topic/496785-deferred-rendering-and-hdr/Quote:Original post by jstrohYeah I've been reading about people saying "oh you can onl...
分类:
其他好文 时间:
2014-07-27 21:47:19
阅读次数:
350
题目:Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space....
分类:
编程语言 时间:
2014-07-27 21:26:35
阅读次数:
267
#include
void fun(char *s,int *t)
{
int i,n=0;
for(i=0;s[i]!=0;i++)
if(s[i]>='0'&&s[i]<='9')
n++;
*t=n;
}
main()
{
char s[80]="asdf45edx7sd7";
int t;
printf("\nThe original string is :%s\n...
分类:
其他好文 时间:
2014-07-27 11:32:32
阅读次数:
232
c中的const表达着“常量”的意思,更准确地说是“read-only”(只读)的含义。当const与指针相遇时,由于其与*的相对位置不同,会产生不一样的效果。
举例说明
(1)const位于*的左侧
如,const int *p;此时等同于int const *p;
此时,const的含义体现在:*p是只读的。
(1)const位于*的右侧
如,int *const p;
此时,const的含义体现在:p是只读的。...
分类:
其他好文 时间:
2014-07-27 11:25:42
阅读次数:
185
单例模式目的:Ensure a class only has one instance, and provide a global point of access toit.保证一个类仅有一个实例,并提供一个访问它的全局访问点。C++实现在类中,定义一个私有静态成员对象;将构造函数也定义为私有的,保...
分类:
其他好文 时间:
2014-07-27 10:25:12
阅读次数:
235
Problem StatementYou have a collection of music files with names formatted as “genre-artist-album-song” (quotes for clarity only), where genre, artist...
分类:
其他好文 时间:
2014-07-27 10:03:42
阅读次数:
273
Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15582 Accepted Submission(s): 5656
Problem Description
Angel was caught by th...
分类:
其他好文 时间:
2014-07-26 17:20:02
阅读次数:
371
Compared with I version, the tree could be incomplete. The only difference is that, we connect current node's child to next non-childrenless' node's f...
分类:
其他好文 时间:
2014-07-26 17:02:11
阅读次数:
316
Problem Description:
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers
sums to T.
Each number in C may only b...
分类:
其他好文 时间:
2014-07-26 15:24:02
阅读次数:
252