安装yum-utils:yuminstallyum-utils开始清理:清理不被当前系统任何软件所使用的依赖包(应多运行几次):package-cleanup--leaves清理当前软件仓库不再支持的孤儿包:package-cleanup--orphans清理旧内核:package-cleanup--oldkernels更多请manyum-utilsmanpackage-cleanup..
分类:
其他好文 时间:
2015-05-20 15:03:39
阅读次数:
80
The diameter of a tree (sometimes called the width) is the number of nodes on the longest path between two leaves in the tree.The diameter of a tree T...
分类:
其他好文 时间:
2015-05-20 07:07:30
阅读次数:
129
PAT List LeavesGiven a tree, you are supposed to list all the leaves in the order of top down, and left to right.PAT题目地址 PAT List Leavesmooc上说是比较基础的树题...
分类:
其他好文 时间:
2015-05-19 16:21:03
阅读次数:
138
前段时间公司让我们学习ExtJS,学习了一个礼拜,完成了个小练习,思来想去决定做个总结,但是又懒得敲word,于是就在代码上每行都加上注释,以后忘记了就翻开来看看。在这里给出代码。完成的功能如图所示。/** * 默认页面 * * @author leaves.qq:1330771552 */Ext....
分类:
Web程序 时间:
2015-05-18 14:21:06
阅读次数:
147
2.1 Decision Tree Marginalization现在决策树边缘化的基本过程已经了解了简单叙述一下:这个决策树是HMM合成的决策树给定的triphone标注是:r-ih+z然后,根据给定的triphone标注,利用当前的语音合成的模型,去推理得到语音识别的模型对给定的triphone...
分类:
其他好文 时间:
2015-04-09 00:45:56
阅读次数:
179
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.Input Specification:Each input file contains one tes...
分类:
其他好文 时间:
2015-04-08 23:00:35
阅读次数:
247
题目:Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.Input Specification:Each input file contains one ...
分类:
其他好文 时间:
2015-04-05 20:12:55
阅读次数:
168
1、安装yum-utilsyum install yum-utils2、使用package-cleanup --leaves列举系统中不再需要的包package-cleanup --leaves3、再使用yum remove命令手动卸载上面列表中的包yum remove ......
分类:
其他好文 时间:
2015-03-21 15:32:23
阅读次数:
93
题意:给出按先序输入的一颗二叉树,分别求出从左到右的相同横坐标上的节点的权值之和递归建树,然后用sum数组分别统计每一个横坐标上的权值之和感觉建树都在递归递归递归= =慢慢理解吧 1 #include 2 #include 3 #include 4 #include 5 #incl...
分类:
其他好文 时间:
2015-03-14 12:13:33
阅读次数:
114
题意:给出一些字符串,从上到下的建树,输出其前序遍历像前面那一题一样,先建树,然后再递归前序遍历不过想像上一题那样用数组建树,建树和上题一样的办法,可是应该怎么输出前序遍历呢= =还是看的题解= = 1 #include 2 #include 3 #include 4 #include ...
分类:
其他好文 时间:
2015-03-13 20:32:30
阅读次数:
195