题目链接:https://oj.leetcode.com/problems/binary-tree-level-order-traversal-ii/
题目:
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, l...
分类:
其他好文 时间:
2015-02-01 09:37:45
阅读次数:
155
Q:Given a binary tree, return the postorder traversal
of its nodes' values.
Note:Recursive
solution is trivial, could you do it iteratively?
题目的意思就是不用递归求二叉树的后序遍历。
后续遍历的递归方式很简单,首先遍历左子树,然后遍历右子树,最...
分类:
其他好文 时间:
2015-01-31 14:49:58
阅读次数:
156
* 一、枚举类* 1.如何自定义枚举类* 2.如何使用enum关键字定义枚举类*>常用的方法:values() valueOf(String name)*>如何让枚举类实现接口:可以让不同的枚举类的对象调用被重写的抽象方法,执行的效果不同。(相当于让每个对象重写抽象方法) 1 //普通枚举类 2 c...
分类:
编程语言 时间:
2015-01-31 00:09:26
阅读次数:
239
Given n, how many structurally unique BST's (binarysearch trees) that store values 1...n?
For example,
Given n = 3, there are a total of 5 unique BST's.
1 3 3 2 1
\ ...
分类:
其他好文 时间:
2015-01-30 22:53:46
阅读次数:
166
Given a binary tree, return the inorder traversal of itsnodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,3,2].
Note: Recursive solution istri...
分类:
其他好文 时间:
2015-01-30 22:53:42
阅读次数:
203
Given a binary tree, return the preorder traversal of itsnodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,2,3].
Note: Recursive solution istr...
分类:
其他好文 时间:
2015-01-30 22:53:36
阅读次数:
234
Oracle 中如何插入日期时间类型的数据,演示的数据表如下
create table t( mydate date);
SQL> insert into t values(to_date('2015-1-30 12:20:33','YYYY-MM-DD HH24:MI:SS'));
SQL> select to_char(mydate,'YYYY-MM-DD HH24:MI:SS') f...
分类:
数据库 时间:
2015-01-30 22:42:51
阅读次数:
266
因为用户的输入可能是这样的:1value'); DROP TABLE table;-- 那么SQL查询将变成如下:1INSERTINTO`table` (`column`) VALUES('value'); DROPTABLEtable;--') 应该采取哪些有效的方法来防止SQL注入? 最佳回.....
分类:
数据库 时间:
2015-01-30 16:56:14
阅读次数:
249
1、Ibatis批量添加(传入class的list即可) insert all into SYS_TABLE (id,Category,Name,Code,Status) values(#[].Id#,#[].Category#,#[].Name#, #[].Code#,#[].Sta...
分类:
数据库 时间:
2015-01-30 15:47:11
阅读次数:
159
问题:Error creating bean with name 'sqlSessionFactory' defined in class path resource [applicationContext-dao.xml]: Error setting property values; neste...
分类:
数据库 时间:
2015-01-30 15:34:55
阅读次数:
1469