package com.tree.demo;public class BinaryTree { int data; // 根节点数据 BinaryTree left; // 左子树BinaryTree right; // 右子树 public BinaryTree(int data) // 实例化....
分类:
编程语言 时间:
2014-07-19 19:06:23
阅读次数:
196
A view tree observer is used to register listeners that canbe notified of global changes in the view tree. Such global eventsinclude, but are not limi...
分类:
其他好文 时间:
2014-07-19 17:26:44
阅读次数:
310
Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened t...
分类:
其他好文 时间:
2014-07-19 00:24:36
阅读次数:
170
Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which rep...
分类:
其他好文 时间:
2014-07-18 20:09:38
阅读次数:
433
A simple 1D searching problem. Binary search of course.But.. STL has already done it for you:class Solution {public: int searchInsert(int A[], int ...
分类:
其他好文 时间:
2014-07-18 18:35:41
阅读次数:
205
JS中location.search什么意思设置或获取网页地址跟在问号后面的部分当以get方式在url中传递了请求参数时,可以利用location的search属性提取参数的值,下面的代码把参数的名称和对应的值存储在2个数组中。------------------------------------...
分类:
其他好文 时间:
2014-07-18 18:33:28
阅读次数:
287
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:
其他好文 时间:
2014-07-18 18:28:44
阅读次数:
231
Another recursion-style problem.1. Each count of sub-solution with a certain root should contribute to final count2. With a certain root, the num of l...
分类:
其他好文 时间:
2014-07-18 18:18:01
阅读次数:
187
sql 中contains的使用例子,参数详解全文索引——CONTAINS 语法 我们通常在 WHERE 子句中使用 CONTAINS ,就象这样:SELECT * FROM table_name WHERE CONTAINS(fullText_column,'search contents')。 ...
分类:
数据库 时间:
2014-07-18 17:28:39
阅读次数:
282
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-07-18 17:21:54
阅读次数:
293