题目:Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A ...
分类:
其他好文 时间:
2014-06-28 10:26:38
阅读次数:
253
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.TreeNode *createSearchTree(ListNode *&hea...
分类:
其他好文 时间:
2014-06-26 00:12:57
阅读次数:
289
一、GCC(GNU Compiler Collection)是linux下最主要的编译工具,GCC不仅功能非常强大,结构也异常灵活。它可以通过不同的前端模块来支持各种语言,如Java、Fortran、Pascal、Modula-3和Ada g++是GCC中的一个工具,专门来编译C++语言的。 GCC...
分类:
编程语言 时间:
2014-06-25 23:19:15
阅读次数:
297
一。查看内核版本命令:1) [root@SOR_SYS ~]# cat /proc/versionLinux version 2.6.18-238.el5 (mockbuild@x86-012.build.bos.redhat.com) (gcc version 4.1.2 20080704 (Re...
分类:
系统相关 时间:
2014-06-25 22:40:48
阅读次数:
361
[root@localhost ipvsadm-1.26]# makemake -C libipvsmake[1]: Entering directory `/usr/local/soft/ipvsadm-1.26/libipvs'gcc -Wall -Wunused -Wstrict-protot...
分类:
其他好文 时间:
2014-06-25 22:30:05
阅读次数:
1074
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total number...
分类:
其他好文 时间:
2014-06-25 22:07:58
阅读次数:
330
There are idiosyncrasies in the GCC inline assembly syntax.in the line,__asm__ __volatile__("stw%U0%X0 %1,%0" : "=m"(v->counter) : "r"(i));the stw ass...
分类:
其他好文 时间:
2014-06-24 14:34:54
阅读次数:
309
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(...
分类:
其他好文 时间:
2014-06-24 13:40:33
阅读次数:
214
img = cv2.imread( 'E:\A.jpeg' )
cv2.imshow( 'img', img )
gray = cv2.cvtColor( img, cv2.COLOR_BGR2GRAY )
ret, binary = cv2.threshold( gray, 127, 255, cv2.THRESH_BINARY )
contours, hierarchy = cv2.fin...
分类:
其他好文 时间:
2014-06-22 09:49:42
阅读次数:
370
题目:
Given a binary tree containing digits from 0-9 only, each root-to-leaf
path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find...
分类:
其他好文 时间:
2014-06-22 08:30:24
阅读次数:
236