码迷,mamicode.com
首页 >  
搜索关键字:hash tree    ( 28321个结果
显示目录树命令tree
-a:显示所有文件,包括隐藏文件-d:只显示目录-f:显示完整的文件名,包含路径-L:显示目录树的深度[root@rusky /]# tree -L 2 -a -f /home/home|-- /home/99user.ldif|-- /home/Legal| |-- /home/Legal/C.....
分类:其他好文   时间:2014-05-05 23:08:27    阅读次数:402
EasyUI ComboTree数据绑定树形分类显示
承接上篇博文【LINQ获取树形分类的层数】。在上文中,笔者只分享了层数,在这里我把完整的实现贴出来,欢迎批评指正。先附上效果图:首先是Tree公共类publicclassTree {publicintModuleID {get;set; }publicintParentID {get;set; }p...
分类:其他好文   时间:2014-05-05 23:06:02    阅读次数:433
【LeetCode OJ】Sum Root to Leaf Numbers
# Definition for a binary tree node# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right ...
分类:其他好文   时间:2014-05-05 22:56:23    阅读次数:419
Leetcode: Balanced Binary Tree
很锻炼DP/recursive思路的一道题,个人感觉DP/recursive算是比较难写的题目了。这道题解法的巧妙之处在于巧用-1,并且使用临时存储,节省了很多开支。这道题同时也在Career Cup上面出现过这道题我两次调试通过,第一次错是因为input{}, output false, expe...
分类:其他好文   时间:2014-05-05 22:45:10    阅读次数:352
【LeetCode OJ】Word Ladder I
Problem Link:http://oj.leetcode.com/problems/word-ladder/Two typical techniques are inspected in this problem:Hash Table. One hash set is the words di...
分类:其他好文   时间:2014-05-05 22:44:44    阅读次数:393
Leetcode: Maximum Depth of Binary Tree
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:其他好文   时间:2014-05-05 22:44:13    阅读次数:328
Leetcode: Same Tree
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:其他好文   时间:2014-05-05 22:43:14    阅读次数:313
Balanced Binary Tree
Link:http://oj.leetcode.com/problems/balanced-binary-tree/Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced ...
分类:其他好文   时间:2014-05-05 22:29:55    阅读次数:382
Android apk file
apk file 其实就是zip文件, 可以将其重命名为zip文件,然后用unzip命令解压。unzip example1.apk -d ./example_dir tree . ├── AndroidManifest.xml ├── classes.dex ├── META-INF │   ├── CERT.RSA │   ├── CERT.SF │   └── MANIFEST.MF ├── ...
分类:移动开发   时间:2014-05-05 13:12:59    阅读次数:469
poj 1077 + HOJ 10466 + hdu 1043 eight
此题我用了2种方法去做,bfs和双向 bfs 现在还在学A*,准备学会了再用A*去试试,单向bfs只过了poj,双向bfs全部都过了,具体思想就是搜索加判重,有用hash,有用康托展开,不过康托展开比较方便,因为毕竟可以一一对应,就不用判重的时候还要比较9个数了,康托展开的计算方法是:从最高位开始,在它位数前面比它小的所有数的数量再乘以它(位数-1)的阶乘,再把每一位的这个值给加起来,就是要求的。...
分类:其他好文   时间:2014-05-03 17:25:28    阅读次数:321
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!