东黑布衣,流浪幽燕。 真诚善良,值得信赖。
全部博文(327)
发布时间:2019-01-06 23:46:13
108Convert Sorted Array to Binary Search TreeEasyGiven the sorted array: [-10,-3,0,5,9],One possible answer is: [0,-3,9,-10,null,5], which represents the following height balanced BST: 0 / \ -3 9 / / -10 5/** * Definition for a binary .........【阅读全文】
发布时间:2018-12-31 22:47:38
EasyInput: 1 1 / \ / \ 2 3 2 3 [1,2,3], [1,2,3] Output: trueExample 2:101. Symmetric TreeEasy 1 / \ 2 2 / \ / \3 4 4 3But the following [1,2,2,null,3,null,.........【阅读全文】
发布时间:2018-03-04 16:59:47
// C语言中long和int是一样的,long long才是真正的64bit
// 32bit最大int 是2147483647 或者0x7FFFFFFF......【阅读全文】