非递归解法
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class...
分类:
其他好文 时间:
2014-10-06 12:54:00
阅读次数:
211
The Bottom of a GraphTime Limit:3000MSMemory Limit:65536KTotal Submissions:8904Accepted:3689DescriptionWe will use the following (standard) definition...
分类:
其他好文 时间:
2014-10-05 20:53:19
阅读次数:
256
字符串是要用引号(双引号,单引号,多行用三个引号)引起来TypeError: not enough arguments for format stringyou have to specify multiple arguments as tuple, egprint "%d %s of beer o...
分类:
编程语言 时间:
2014-10-05 20:23:28
阅读次数:
237
虽然使用EXT开发了一段时间,但是自己觉得我对javascript还是不是很熟,所以边看书边做小例子 给自己以后用到的时候查看下,都是很基本的东西,对初学者可能有点帮助下面是代码Java代码 grid 多选需要增加multiple属性 在多选中size属性可以初始化下拉框...
分类:
Web程序 时间:
2014-10-05 20:18:48
阅读次数:
377
作者:张克强 作者微博:张克强-敏捷307关于Definition of Done 完成的定义在以往的说法中,常见用 退出标准 , 完成条件,成功标准,等等在敏捷软件开发中,存在多级的不同的完成定义。典型的是迭代的DoD,这也是最初DoD应用的地方。常见在Scrum中,需要预先定义DoD,常见的迭代DoD条款有:1,所有完成的用户故事得到PO的验证2,所有代码得到静态分析,纠正最高级别的不符...
分类:
其他好文 时间:
2014-10-05 09:36:08
阅读次数:
253
Find The Multiple
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 18390
Accepted: 7445
Special Judge
Description
Given a positive integer n, write a ...
分类:
其他好文 时间:
2014-10-05 01:33:27
阅读次数:
327
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool hasCycl...
分类:
其他好文 时间:
2014-10-04 15:09:06
阅读次数:
187
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Soluti...
分类:
其他好文 时间:
2014-10-04 15:07:46
阅读次数:
162
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* Lis...
分类:
其他好文 时间:
2014-10-03 17:21:45
阅读次数:
167
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* ...
分类:
其他好文 时间:
2014-10-03 15:40:04
阅读次数:
186