Print all palindromes of size greater than or equal to 3 of a given string.动态规划: p[j] 表示对于(i-1..j)这一段的字符串是否为回文。所以要使p[j] 为1的条件是中间的字符串(i-1..j-1)为回文(p[j-...
分类:
其他好文 时间:
2015-06-23 22:56:09
阅读次数:
139
Find the seed of a number.Eg : 1716 = 143*1*4*3 =1716 so 143 is the seed of 1716. find all possible seed for a given number.辗转相除法,由性质可利用 sqrt(num) <= ...
分类:
其他好文 时间:
2015-06-14 15:05:22
阅读次数:
181
A number is called 'desirable' if all thedigits are strictly ascending eg: 159 as 1<5<9. You know that your rivalhas a strictly numeric password that ...
分类:
其他好文 时间:
2015-06-14 12:18:02
阅读次数:
142
You are given a grid of numbers. A snakes equence is made up of adjacent numbers such that for each number, the number on the right or the number belo...
分类:
其他好文 时间:
2015-06-14 12:08:04
阅读次数:
152
N*N matrix is given with input red or black.You can move horizontally, vertically or diagonally. If 3 consecutive samecolor found, that color will get...
分类:
其他好文 时间:
2015-06-13 09:46:51
阅读次数:
109
Let the user enter a decimal number. Therange allowed is 0.0001 to 0.9999. Only four decimal places are allowed. Theoutput should be an irreducible fr...
分类:
其他好文 时间:
2015-06-13 09:45:17
阅读次数:
118
Given aNXN matrix, starting from the upper right corner of the matrix start printingvalues in a counter-clockwise fashion.E.g.: Consider N = 4Matrix= ...
分类:
其他好文 时间:
2015-06-13 09:41:29
阅读次数:
92
??
前几天去参加了Unreal Open Day,周四早上从北京出发,坐地铁跟徐导,呵呵,simon他们汇合后,打车去了北京南站。一路上有小雨,不禁让人多少有点担心堵车,好在一路顺利。由于还没有一台较牛的笔记本,因此这次我们把电脑都带去了。
车上一路有说有笑,继续我们脑洞大开的旅程,别说,这么一聊又有了不少感觉还不错的想法。
晚上到了上海,在展区边上的酒店安顿下来后,才发现会场原来就...
分类:
其他好文 时间:
2015-06-09 11:51:55
阅读次数:
195
本文章由cartzhang编写,转载请注明出处。 所有权利保留。
文章链接:
作者:cartzhang
Unreal Engine虚幻引擎的快捷键
Logo是Epic 游戏公司的注册商标。
虚幻引擎热键
这里你可以看到一些缺省的热键。下面是缩写的说明:
鼠标右键:RMB
鼠标左键:LMB
鼠标中建:MMB
你有需要,可通...
分类:
其他好文 时间:
2015-04-20 14:54:25
阅读次数:
363
之1:需求不再是传统的SRS文档,而是一条一条的,能够逐条查询,编辑,修改,状态跟踪。比如scrum提出的Backlog中的user story。之2: 需求条目的层级划分,一级的划分往往是不够的。第一级需求往往收集原始需求素材,难以控制其范围和规模,所以不便于直接开发;第二级需求经过第一级的过滤整理,适合提供给程序开发。在敏捷里常见划分出epic和story,在cmmi中分成了客户需求,产品需求...
分类:
其他好文 时间:
2015-03-28 17:17:37
阅读次数:
733