Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example, Given n = 3, there are a total of 5 unique BST'...
分类:
其他好文 时间:
2014-06-28 11:57:50
阅读次数:
232
Given a binary tree, return the inorder traversal of its nodes' values.For example: Given binary tree {1,#,2,3}, 1 \ 2 / 3return [1,3,2]...
分类:
其他好文 时间:
2014-06-28 11:26:55
阅读次数:
206
官方描述:ipairs(t)Returns three values: an iterator function, the tablet, and 0, so that the constructionfor i,v inipairs(t) dobodyendwill iterate over th...
分类:
其他好文 时间:
2014-06-23 08:19:14
阅读次数:
309
String sql=null;1、sql="update 表名 set = [where=]"2、sql="delete from 表名 [where=]"3、sql="insert into 表名 [column_list] values(date_values) [where=]"4、sql=...
分类:
数据库 时间:
2014-06-23 08:17:50
阅读次数:
258
修改Activity的标题样式及ActionBar ,代码如下 修改工程values/styles.xml 在中加入你要重新定义的样式。
分类:
移动开发 时间:
2014-06-23 00:07:13
阅读次数:
474
create table users_ning(id primary key auto_increment,pwd int);
insert into users_ning values(id,1234);
insert into users_ning values(id,12345);
insert into users_ning values(id,12);
insert into...
分类:
数据库 时间:
2014-06-22 21:50:27
阅读次数:
268
错误:”?”日文符号插入sql-server2005符号,出现乱码
原因:DB字段设为varchar,DB文字编码为“Chinese_PRC_CI_AS”
对应:字段类型变化
varchar → nvarchar
插入SQL语句变化
insert into tblTest(remark) values ('王?王')
→...
分类:
数据库 时间:
2014-06-22 21:30:03
阅读次数:
278
今天在github 上面找到了一个关于如何正确使用javascript 来进行我们的程序开发.我就恬不知耻的来了个原创啊..坑爹啊.拿来和大家分享一下吧.
A mostly reasonable approach to Javascript.
Types //类型
Objects //对象
Arrays //数组
Strings //字符串
Fu...
分类:
编程语言 时间:
2014-06-22 19:13:40
阅读次数:
240
insert into prefix_${table_name} (a, b, c) values (#{a}, #{b}, #{c})
${} 表示直接使用字面量(literal value)
#{} 表示这个是个参数
如果 table_name 是 “ABC”
则 ${table_name} 是 ABC
#{table_name} 是 “ABC"...
分类:
数据库 时间:
2014-06-22 00:58:21
阅读次数:
240
ORA-00913错误
描述:PL/SQL: ORA-00913: too many values
目标:编写一个可以循环插入数据的脚本
操作过程:
SQL> desc tcustmer
Name Null? Type
----------------- -------- -------------------------...
分类:
数据库 时间:
2014-06-21 21:40:02
阅读次数:
326