推荐29首,适合80后结婚用的歌曲 1:Sweet Dream 原因:Sweet
Dream是由韩国张娜拉所唱的,非常适合婚礼所用,有几对明星结婚都是用这首歌。 2:Light Of My Life 原因:Light Of My
Life是由Lara Fabian & 王力宏 合唱的,...
分类:
其他好文 时间:
2014-06-29 15:35:28
阅读次数:
249
原题地址:https://oj.leetcode.com/problems/subsets/题意:枚举所有子集。解题思路:碰到这种问题,一律dfs。代码:class
Solution: # @param S, a list of integer # @return a list of l...
分类:
编程语言 时间:
2014-05-30 04:31:09
阅读次数:
1243
1.MonoBehaviour类,定义了对各种特定事件的脚本响应函数。这些函数均以On做开头。2.U3D中常用的组件及对应变量名如下:Transform(transform),Rigidbody(rigidbody),Renderer(renderer),Light(light),Camera(ca...
分类:
其他好文 时间:
2014-05-30 04:09:44
阅读次数:
311
原题地址:https://oj.leetcode.com/problems/climbing-stairs/题意:You
are climbing a stair case. It takesnsteps to reach to the top.Each time you can
either cl...
分类:
编程语言 时间:
2014-05-28 03:27:49
阅读次数:
267
原题地址:https://oj.leetcode.com/problems/minimum-path-sum/题意:Given
amxngrid filled with non-negative numbers, find a path from top left to bottom
right w...
分类:
编程语言 时间:
2014-05-28 03:03:13
阅读次数:
320
一般在光照模型中,ambient light的计算方法为:A = l *
m,其中l表示表面接收到的来自光源的ambient light的总量,而m表示表面接收到ambient
light后,反射和吸收的量。出于性能考虑,在计算光照时,我们是不考虑那些从场景中其他物体反弹过来的光的,因为通常我们认为...
分类:
其他好文 时间:
2014-05-28 00:44:17
阅读次数:
293
今天神坑的GCPC 2013
B题啊,本来是个很简单的模拟+扫描线,却WA的不明不白经过几个人测试,不得不说一下,CSU OJ 的编译器肯定有点问题coj 1458#include
#include #include #include using namespace std;int b,c;stru...
分类:
其他好文 时间:
2014-05-26 19:46:46
阅读次数:
277
原题地址:https://oj.leetcode.com/problems/path-sum/题意:Given
a binary tree and a sum, determine if the tree has a root-to-leaf path such that
adding up all...
分类:
编程语言 时间:
2014-05-26 18:37:11
阅读次数:
295
原题地址:https://oj.leetcode.com/problems/unique-binary-search-trees-ii/题意:接上一题,这题要求返回的是所有符合条件的二叉查找树,而上一题要求的是符合条件的二叉查找树的棵数,我们上一题提过,求个数一般思路是动态规划,而枚举的话,我们就考...
分类:
编程语言 时间:
2014-05-26 18:30:01
阅读次数:
256
开始学习算法导论,看书+笔记+做课后题目+做OJ计划是每天一个小时看书+写笔记挑些课后题目来做,然后一道OJ————————————————————————————————————————今天看随机算法与概率分布,又复习了一下概率论
- -讲到了两个随机算法:其中一个是随机分布优先度,然后按照优先度...
分类:
其他好文 时间:
2014-05-25 22:20:37
阅读次数:
251