【题目】
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
...
分类:
其他好文 时间:
2014-12-08 17:47:58
阅读次数:
191
题目
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n = 4,
return 1->4->3->2->5->NULL.
Note:
Given m, n sat...
分类:
其他好文 时间:
2014-12-08 17:47:37
阅读次数:
179
中山水牛城的一些图片,前阵子去走走拍的,帮朋友的广告公司过来看看的,他们需要中山水牛城内部那些位置可以放广告,想和中山水牛城物业公司拿广告位,其实我在这里走动也是很少的,现在就比较多了,最近另一个朋友也在这附近工作呢.鉴于我的垃圾红米note手机相机差,所以拍得也不太怎样.中山水牛城都几大的,虽然档...
分类:
其他好文 时间:
2014-12-08 17:04:00
阅读次数:
412
VI中的多行删除与复制rain_window2010-11-24 16:19:41VI中的多行删除与复制法一:单行删除,:1(待删除行)d多行删除 ,:1,10d法二:光标所在行,dd光标所在行以下的N行,Ndd方法1:光标放到第6行,输入:2yy光标放到第9行,输入:p此方法适合复制少量行文本的情...
分类:
Web程序 时间:
2014-12-08 12:01:53
阅读次数:
202
.git目录中各个文件和目录的作用: HEAD 指向当前分支,是一个指向你当前所在分支的引用标识符,这样的引用标识符——它看起来并不像一个普通的引用——其实并不包含 SHA-1 值,而是一个指向另外一个引用的指针 branches/config 包含了项目特有的配置选项 description 仅供...
分类:
其他好文 时间:
2014-12-08 10:39:12
阅读次数:
240
【题目】
Given a binary tree, return the postorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [3,2,1].
Note: Recursi...
分类:
其他好文 时间:
2014-12-07 17:49:21
阅读次数:
135
问题描述:
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note: The numbers can be arbitrarily large and are non-negative.
基本思路:
大数乘法,此题如果用java的BigInteg...
分类:
其他好文 时间:
2014-12-07 12:38:10
阅读次数:
136
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:
其他好文 时间:
2014-12-07 00:06:32
阅读次数:
228
SpotLight方法根据设置灯光的颜属性color, 强度属性intensity,距离属性 distance,灯光的照射角度 angle,衰减速度 exponent 创建聚光灯光源(射灯).
SpotLight对象的功能函数采用定义构造的函数原型对象来实现.
NOTE: SpotLight类型灯光实现了阴影,但是需要在场景中使用MeshLambertMaterial或者MeshPhongMaterial
下面一些注释直接摘抄自:http://www.cnblogs.com/yiyezhai/archi...
分类:
Web程序 时间:
2014-12-06 15:28:28
阅读次数:
262
DirectionalLight方法根据设置灯光的颜属性color, 强度属性intensity创建平行光光源.
DirectionalLight对象的功能函数采用定义构造的函数原型对象来实现.
NOTE: SpotLight类型灯光实现了阴影,但是需要在场景中使用MeshLambertMaterial或者MeshPhongMaterial
下面一些注释直接摘抄自:http://www.cnblogs.com/yiyezhai/archive/2012/12/24/2829991.html
Examp...
分类:
Web程序 时间:
2014-12-06 15:25:00
阅读次数:
200