其他好文[总排行] [月排行] [周排行] [日排行]
拿到一个新 bug 怎样分析...
分类:其他好文 时间:2014-06-07 16:08:04 阅读:152
【题目】 Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. For example: Given the below binary tree and sum = 22, 5 / 4 8 / / 11 13 4 ...
分类:其他好文 时间:2014-06-20 10:53:08 阅读:181
【题目】 Given a binary tree, flatten it to a linked list in-place. For example, Given 1 / 2 5 / \ 3 4 6 The flattened tree should look like: 1 2 3 4 \...
分类:其他好文 时间:2014-06-07 11:37:00 阅读:153
【题目】 Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relati...
分类:其他好文 时间:2014-06-29 07:27:17 阅读:210
在RPG游戏中,为了让人物的死亡更加真实,unity创建布娃娃系统,搞的跟真的一样,尼玛我差点就相信那是真的了。 1.首先打开unity,创建地形,导入已经准备好的人物模块。 2.project下选中该模型,再为该模型添加布娃娃属性:GameObject->Create Other->RagDoll 3.在弹出的框中将布娃娃的各个结点设置进去 4.一定要去掉该人物的Box Coll...
分类:其他好文 时间:2014-06-20 11:07:27 阅读:360
【题目】 Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; } Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be...
分类:其他好文 时间:2014-06-07 14:28:36 阅读:215
(转载请注明出处:http://blog.csdn.net/buptgshengod)1.北京...
分类:其他好文 时间:2014-06-20 13:04:02 阅读:193
使用泛型实现栈结构...
分类:其他好文 时间:2014-06-20 09:14:24 阅读:164
条款27:尽量少做转型动作 C++的四种显示类型转换...
分类:其他好文 时间:2014-06-20 09:16:32 阅读:195
Let d(n) be defined as the sum of proper divisors of n (numbers less than n which divide evenly into n). If d(a) = b and d(b) = a, where a b, then a and b are an amicable pair and each of a and b...
分类:其他好文 时间:2014-06-07 13:40:53 阅读:226
1145635145636145637148452
上一页1484515下一页
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!