1. 对于JavaScript 来说,有一个概念十分重要——既函数是一种数据类型。也就是说,下面两种函数定义在本质上是相同的:① . function f () { return 1;}② . var f =function () { return 1;}其中,第二种定义方式通常被叫做函数标识记法(...
分类:
其他好文 时间:
2015-06-25 11:45:29
阅读次数:
133
变换一个整数的符号,即正数变负数,负数变正数。1 int reverseSign(int n) {2 return ~n+1;3 }
分类:
其他好文 时间:
2015-06-25 10:23:41
阅读次数:
127
Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?
For example,
Given sorted array nums = [1,1,1,2,2,3],
Your function should return length = 5, with the first fi...
分类:
其他好文 时间:
2015-06-25 09:05:36
阅读次数:
109
Given n, generate all structurally unique BST’s (binary search trees) that store values 1…n.For example,
Given n = 3, your program should return all 5 unique BST’s shown below.
confused what “{1,#,...
分类:
其他好文 时间:
2015-06-25 01:25:38
阅读次数:
143
1 重写的方法@Override public int getColumnCount() { // TODO Auto-generated method stub return this.columnNames.size(); } @Override ...
分类:
其他好文 时间:
2015-06-25 01:17:38
阅读次数:
281
输入值/表单提交参数过滤,防止sql注入或非法攻击的方法:代码如下:/** * 过滤sql与php文件操作的关键字 * @param string $string * @return string * @author zrp */ private function filter_keyword( ....
分类:
数据库 时间:
2015-06-25 00:07:03
阅读次数:
321
简单演练func sum(a: Int, b: Int) -> Int { return a + b}阶段性小结函数定义格式:func 函数名(参数: 参数类型...) -> 返回值 { // 代码实现 }如果没有返回值,-> 返回值可以省略->是一个很有意思的符号默认情况下,在调用函数时,第...
分类:
其他好文 时间:
2015-06-24 23:58:02
阅读次数:
197
lazy var demoView: UIView = { let v = UIView(frame: CGRectMake(10, 10, 100, 100)) v.backgroundColor = UIColor.redColor() return v}()格式:lazy v...
分类:
其他好文 时间:
2015-06-24 23:52:50
阅读次数:
123
1. Question将excel表中的列标题(A、B、C...)转换为对应的列数字返回。Given a column title as appear in an Excel sheet, return its corresponding column number.For example: ...
分类:
其他好文 时间:
2015-06-24 23:52:28
阅读次数:
160
一个整数为2的幂说明该整数的二进制中只有一个1. bool isSquareOf2 (int n){ return (n&(n-1))==0?true:false;}
分类:
其他好文 时间:
2015-06-24 23:48:13
阅读次数:
163