
树
文章平均质量分 77
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 450. Delete Node in a BST
原题网址:https://leetcode.com/problems/delete-node-in-a-bst/Given a root node reference of a BST and a key, delete the node with the given key in the BST. Return the root node reference (possibly up原创 2017-01-04 08:36:18 · 994 阅读 · 0 评论 -
LeetCode 145. Binary Tree Postorder Traversal(二叉树后序遍历)
原题网址:https://leetcode.com/problems/binary-tree-postorder-traversal/Given a binary tree, return the postorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1原创 2016-05-26 01:31:28 · 537 阅读 · 0 评论 -
LeetCode 336. Palindrome Pairs(回文对)
原题网址:https://leetcode.com/problems/palindrome-pairs/Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e.原创 2016-04-30 05:34:08 · 2730 阅读 · 3 评论 -
LeetCode 103. Binary Tree Zigzag Level Order Traversal(二叉树之字形遍历)
原题网址:https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right原创 2016-05-23 03:58:09 · 1402 阅读 · 0 评论 -
LeetCode 102. Binary Tree Level Order Traversal(二叉树分层遍历)
原题网址:https://leetcode.com/problems/binary-tree-level-order-traversal/Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).For原创 2016-05-23 03:55:58 · 549 阅读 · 0 评论 -
LeetCode 101. Symmetric Tree(对称的树)
原题网址:https://leetcode.com/problems/symmetric-tree/Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric:原创 2016-05-23 03:22:34 · 760 阅读 · 0 评论 -
LeetCode 100. Same Tree(相同的树)
原题网址:https://leetcode.com/problems/same-tree/Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identic原创 2016-05-23 00:49:13 · 425 阅读 · 0 评论 -
LeetCode 98. Validate Binary Search Tree(校验二叉搜索树)
原题网址:https://leetcode.com/problems/validate-binary-search-tree/Given a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtre原创 2016-05-23 00:39:15 · 506 阅读 · 0 评论 -
LeetCode 96. Unique Binary Search Trees(唯一二叉树)
原题网址:https://leetcode.com/problems/unique-binary-search-trees/Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a原创 2016-05-23 00:38:28 · 399 阅读 · 0 评论 -
LeetCode 95. Unique Binary Search Trees II(唯一二叉搜索树)
原题网址:https://leetcode.com/problems/unique-binary-search-trees-ii/Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.For example,Given n = 3, your原创 2016-05-23 00:35:30 · 507 阅读 · 0 评论 -
LeetCode 87. Scramble String(字符串扰乱)
原题网址:https://leetcode.com/problems/scramble-string/Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible原创 2016-05-23 00:34:32 · 1713 阅读 · 0 评论 -
LeetCode 109. Convert Sorted List to Binary Search Tree(链表到二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.方法:使用慢指针原创 2016-05-24 00:12:46 · 603 阅读 · 0 评论 -
LeetCode 94. Binary Tree Inorder Traversal(二叉树的中序遍历)
原题网址:https://leetcode.com/problems/binary-tree-inorder-traversal/Given a binary tree, return the inorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1原创 2016-05-23 00:35:01 · 1027 阅读 · 0 评论 -
LeetCode 352. Data Stream as Disjoint Intervals(数据流区间)
原题网址:https://leetcode.com/problems/data-stream-as-disjoint-intervals/Given a data stream input of non-negative integers a1, a2, ..., an, ..., summarize the numbers seen so far as a list of dis原创 2016-06-16 01:11:36 · 1594 阅读 · 0 评论 -
LeetCode 449. Serialize and Deserialize BST
原题网址:https://leetcode.com/problems/serialize-and-deserialize-bst/Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file原创 2017-01-04 06:39:45 · 885 阅读 · 0 评论 -
437. Path Sum III
原题网址:https://leetcode.com/problems/path-sum-iii/You are given a binary tree in which each node contains an integer value.Find the number of paths that sum to a given value.The path does原创 2016-10-27 01:42:32 · 679 阅读 · 0 评论 -
LeetCode 156. Binary Tree Upside Down(树的倒转)
原题网址:https://leetcode.com/problems/binary-tree-upside-down/Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or em原创 2016-05-26 00:48:19 · 901 阅读 · 0 评论 -
红黑树
红黑树的两种基本操作做旋转和右旋转,LEFT_ROTATE(x)和RIGHT_ROTATE(x)分别表示以x为支点进行左旋转和右旋转。红黑树的插入操作以插入点为当前点(z),检查是否满足红黑树规则,如果不满足则调整,直至完全满足为止。根据当前点z的父节点和叔叔节点的颜色,可以分为均为红色以及叔叔节点为黑色的情况,而根据当前节点是父节点的做节点还是右节点分为两种情况。原创 2016-08-01 06:51:26 · 535 阅读 · 0 评论 -
LeetCode 366. Find Leaves of Binary Tree
原题网址:https://leetcode.com/problems/find-leaves-of-binary-tree/Given a binary tree, find all leaves and then remove those leaves. Then repeat the previous steps until the tree is empty.Example:原创 2016-06-26 01:49:00 · 2724 阅读 · 0 评论 -
LeetCode 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论 -
LeetCode 331. Verify Preorder Serialization of a Binary Tree(校验二叉树的前序遍历序列化)
原题网址:https://leetcode.com/problems/verify-preorder-serialization-of-a-binary-tree/One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record t原创 2016-04-28 07:36:08 · 975 阅读 · 0 评论 -
LeetCode 310. Minimum Height Trees(最小高度树)
原题网址:https://leetcode.com/problems/minimum-height-trees/For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all po原创 2016-04-21 06:51:54 · 3031 阅读 · 0 评论 -
LeetCode 99. Recover Binary Search Tree(修复二叉搜索树)
原题网址:https://leetcode.com/problems/recover-binary-search-tree/Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A sol原创 2016-05-23 00:39:29 · 638 阅读 · 0 评论 -
LeetCode 117. Populating Next Right Pointers in Each Node II(右邻)
原题网址:https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any bina原创 2016-05-24 00:19:44 · 503 阅读 · 0 评论 -
LeetCode 124. Binary Tree Maximum Path Sum(二叉树最大路径和)
原题网址:https://leetcode.com/problems/binary-tree-maximum-path-sum/Given a binary tree, find the maximum path sum.For this problem, a path is defined as any sequence of nodes from some starting原创 2016-05-27 00:27:32 · 2083 阅读 · 0 评论 -
LeetCode 337. House Robber III(小偷游戏)
原题网址:https://leetcode.com/problems/house-robber-iii/The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root,原创 2016-04-30 06:12:14 · 1021 阅读 · 0 评论 -
LeetCode 116. Populating Next Right Pointers in Each Node(右邻)
原题网址:https://leetcode.com/problems/populating-next-right-pointers-in-each-node/Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkN原创 2016-05-24 00:19:38 · 361 阅读 · 0 评论 -
LeetCode 114. Flatten Binary Tree to Linked List(摊平二叉树)
原题网址:https://leetcode.com/problems/flatten-binary-tree-to-linked-list/Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5原创 2016-05-24 00:19:26 · 525 阅读 · 0 评论 -
LeetCode 113. Path Sum II(路径和)
原题网址:https://leetcode.com/problems/path-sum-ii/Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree原创 2016-05-24 00:19:11 · 827 阅读 · 0 评论 -
LeetCode 112. Path Sum(路径和)
原题网址:https://leetcode.com/problems/path-sum/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.原创 2016-05-24 00:18:59 · 488 阅读 · 0 评论 -
LeetCode 110. Balanced Binary Tree(平衡二叉树)
原题网址:https://leetcode.com/problems/balanced-binary-tree/Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in原创 2016-05-24 00:12:55 · 563 阅读 · 0 评论 -
LeetCode 108. Convert Sorted Array to Binary Search Tree(数组转换为二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/Given an array where elements are sorted in ascending order, convert it to a height balanced BST.方法:递归,自顶向下。/** *原创 2016-05-24 00:12:53 · 505 阅读 · 0 评论 -
LeetCode 107. Binary Tree Level Order Traversal II(二叉树分层遍历)
原题网址:https://leetcode.com/problems/binary-tree-level-order-traversal-ii/Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by le原创 2016-05-24 00:12:44 · 459 阅读 · 0 评论 -
LeetCode 106. Construct Binary Tree from Inorder and Postorder Traversal(根据中序遍历和后序遍历构造二叉树)
原题网址:https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume原创 2016-05-24 00:12:37 · 473 阅读 · 0 评论 -
LeetCode 105. Construct Binary Tree from Preorder and Inorder Traversal(从前序遍历和中序遍历构造二叉树)
原题网址:https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume t原创 2016-05-24 00:12:34 · 465 阅读 · 0 评论 -
LeetCode 104. Maximum Depth of Binary Tree(二叉树高度)
原题网址:https://leetcode.com/problems/maximum-depth-of-binary-tree/Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node原创 2016-05-24 00:12:30 · 529 阅读 · 0 评论 -
LeetCode 261. Graph Valid Tree(判断图是否为树)
原题网址:https://leetcode.com/problems/graph-valid-tree/Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these原创 2016-04-10 06:50:47 · 8221 阅读 · 0 评论 -
LeetCode 173. Binary Search Tree Iterator(二叉搜索树迭代器)
原题网址:https://leetcode.com/problems/binary-search-tree-iterator/Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.Calling ne原创 2016-05-25 01:36:36 · 1509 阅读 · 0 评论 -
LeetCode 272. Closest Binary Search Tree Value II(二叉搜索树查找)
原题网址:https://leetcode.com/problems/closest-binary-search-tree-value-ii/Given a non-empty binary search tree and a target value, find k values in the BST that are closest to the target.Note:原创 2016-04-13 06:15:51 · 2063 阅读 · 0 评论 -
LeetCode 333. Largest BST Subtree(最大二叉搜索树)
原题网址:https://leetcode.com/problems/largest-bst-subtree/Given a binary tree, find the largest subtree which is a Binary Search Tree (BST), where largest means subtree with largest number of nodes原创 2016-04-29 13:22:12 · 2241 阅读 · 0 评论