码迷,mamicode.com
首页 >  
搜索关键字:problems    ( 6275个结果
[LeetCode]101 Symmetric Tree
https://oj.leetcode.com/problems/symmetric-tree/http://blog.csdn.net/linhuanmars/article/details/23072829/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolution{ publicbool..
分类:其他好文   时间:2015-01-06 12:09:50    阅读次数:173
[LeetCode]102 Binary Tree Level Order Traversal
https://oj.leetcode.com/problems/binary-tree-level-order-traversal/http://blog.csdn.net/linhuanmars/article/details/23404111/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassS..
分类:其他好文   时间:2015-01-06 12:09:39    阅读次数:175
[LeetCode]104 Maximum Depth of Binary Tree
https://oj.leetcode.com/problems/maximum-depth-of-binary-tree/http://blog.csdn.net/linhuanmars/article/details/19659525/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSoluti..
分类:其他好文   时间:2015-01-06 12:08:50    阅读次数:184
[LeetCode]103 Binary Tree Zigzag Level Order Traversal
https://oj.leetcode.com/problems/binary-tree-zigzag-level-order-traversal/http://blog.csdn.net/linhuanmars/article/details/24509105/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publi..
分类:其他好文   时间:2015-01-06 12:07:28    阅读次数:147
powerdesigner 点击preview 语句出现 if exists
drop table if exists XXX这个是sql server 写法。如果要切换为 Oracle 写法菜单栏: database-->change curren DBMS 选择你的数据库http://www.iteye.com/problems/55768
分类:其他好文   时间:2015-01-06 11:31:38    阅读次数:469
使用Mod_JK链接Apache和Tomcat
There are many potential problems associated with the default configuration of mod_jk. Let's say it is perfectly adequate for a very low traffic websi...
分类:Web程序   时间:2015-01-06 02:01:29    阅读次数:813
[LeetCode]93 Restore IP Addresses
https://oj.leetcode.com/problems/restore-ip-addresses/http://blog.csdn.net/linhuanmars/article/details/24683699publicclassSolution{ publicList<String>restoreIpAddresses(Strings) { if(s==null||s.length()<4) returnCollections.emptyList();//invalidinp..
分类:其他好文   时间:2015-01-05 18:59:09    阅读次数:155
[LeetCode]94 Binary Tree Inorder Traversal
https://oj.leetcode.com/problems/binary-tree-inorder-traversal/http://blog.csdn.net/linhuanmars/article/details/20187257/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolut..
分类:其他好文   时间:2015-01-05 18:57:54    阅读次数:133
[LeetCode]96 Unique Binary Search Trees
https://oj.leetcode.com/problems/unique-binary-search-trees/http://blog.csdn.net/linhuanmars/article/details/24761459publicclassSolution{ publicintnumTrees(intn) { //See //http://blog.csdn.net/linhuanmars/article/details/24761459 //r0=0; //r1=1; //r2=2; //..
分类:其他好文   时间:2015-01-05 18:57:26    阅读次数:201
[LeetCode]98 Validate Binary Search Tree
https://oj.leetcode.com/problems/validate-binary-search-tree/http://blog.csdn.net/linhuanmars/article/details/23810735/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolutio..
分类:其他好文   时间:2015-01-05 18:56:26    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!