今早起来做 LeetCode,结果被这道题卡了将近1个半小时,忍着没有去搜答案,最后还是被我想出来了,而且直接一次AC,哈哈!现在在这里记录一下解题思路。原题:Givenn, generate all structurally uniqueBST's(binary search trees) t.....
分类:
其他好文 时间:
2014-10-24 15:57:21
阅读次数:
202
Spiral Matrix IIGiven an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.For example,Given n = 3,You should retu...
分类:
其他好文 时间:
2014-10-24 12:35:31
阅读次数:
259
tips :
1.外表为大表,内表为小表时,使用exist
2.外表为小表,内表为大表时,使用in
示例:外表大,内表小
create table outTable (id1 int);
insert into outtable select generate_series(1,1000000);
create table inTable (id1 int);
i...
分类:
数据库 时间:
2014-10-24 01:46:44
阅读次数:
293
vtkIdFilter Id过滤器,能够从数据集中提取点或单元的Id作为数据集属性数据。可以设置提取Points或Cells的属性数据作为其属性数据。提取前后数据集的拓扑结构不发生改变,只是产生了设定的属性数据。部分代码如下:// Generate data arrays containing po...
分类:
其他好文 时间:
2014-10-23 23:56:51
阅读次数:
409
1、查看BT5上是否安装了ssh.2、查看服务是否开启,ps-e|grepssh3、查看ssh配置是否正确,vi/etc/ssh-config,其中的port、protocol等默认是注释了的,所以要将注释去掉。4、ssh是通过本地key进行认证的,所以要确认本地有这个key,没有的话可以用命令产生:ssh-generate.
分类:
其他好文 时间:
2014-10-23 21:07:25
阅读次数:
156
Given an integer n, generate a square matrix filled with elements from 1 to n2 in
spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[...
分类:
其他好文 时间:
2014-10-23 12:31:39
阅读次数:
132
Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest...
分类:
其他好文 时间:
2014-10-22 23:32:51
阅读次数:
235
Givenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your program should return all 5 uni...
分类:
其他好文 时间:
2014-10-21 22:48:09
阅读次数:
266
[leetcode]Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses....
分类:
其他好文 时间:
2014-10-21 12:26:59
阅读次数:
166
杨辉三角,分别求前n行和第n行。
【求杨辉三角前n行】
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,...
分类:
其他好文 时间:
2014-10-20 19:32:35
阅读次数:
190