Virtual Machine Definition File 2.2http://archives.opennebula.org/documentation:archives:rel2.2:template#disks_device_mappingA template file consists ...
分类:
其他好文 时间:
2014-08-07 18:24:10
阅读次数:
244
问题:输出二叉树的每一行的结点,从叶子到根/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(i...
分类:
其他好文 时间:
2014-08-06 22:04:02
阅读次数:
185
问题:根节点到叶子结点的所有权值和分析:从根节点遍历,若遍历到叶子结点,则sum+其路径的所有权值和/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * Tree...
分类:
其他好文 时间:
2014-08-06 21:59:32
阅读次数:
184
问题:删除距离末尾n个距离的结点分析:先找出距离末尾n个距离的结点其距离开始的距离多少,然后再删除/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ...
分类:
其他好文 时间:
2014-08-06 21:58:02
阅读次数:
199
Using() Statement in 3 seconds and a bug in Reflector The boring, known accross the board definition from the MSDN site: Defines a scope, outside of w...
分类:
其他好文 时间:
2014-08-06 14:39:21
阅读次数:
234
Isolated bags used for various purposes, some of which are described below. In addition to their main object is also popular as promotional items. Bag...
分类:
其他好文 时间:
2014-08-06 11:40:51
阅读次数:
402
错误代码如下:
E:\>wsimport -keep service.xml
parsing WSDL...
[WARNING] src-resolve: Cannot resolve the name 'soapenc:Array' to a(n) 'type definition' component.
line 505 of file:/E:/service1.xml#types...
分类:
Web程序 时间:
2014-08-05 19:27:20
阅读次数:
242
最近要参加面试,网上找了一些题来备着,大家也来学习学习吧,话说平时还真有些东西不知道。。。面试题一:AIDL的全称是什么?如何工作? Android interface definition language (android接口定义语言) ,用来跨进程的访问方法,像 游戏中调用支付宝接口就是用的这...
分类:
移动开发 时间:
2014-08-04 20:54:17
阅读次数:
249
问题:判断二叉树是否为镜像二叉树分析:递归判断,根节点单独判断,然后递归左结点和右结点,之后每次一起递归左结点的左结点和右结点的右结点比较,左结点的右结点和右结点的左结点比较/** * Definition for binary tree * struct TreeNode { * int ...
分类:
其他好文 时间:
2014-08-04 17:27:27
阅读次数:
175
问题:判断二叉树是否为平衡二叉树分析:树上的任意结点的左右子树高度差不超过1,则为平衡二叉树。 搜索递归,记录i结点的左子树高度h1和右子树高度h2,则i结点的高度为max(h1,h2)=1,|h1-h2|>1则不平衡/** * Definition for binary tree * str...
分类:
其他好文 时间:
2014-08-04 13:39:57
阅读次数:
183