
二叉树变形
文章平均质量分 73
jmspan
这个作者很懒,什么都没留下…
展开
-
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 226. Invert Binary Tree(反转二叉树)
原题网址:https://leetcode.com/problems/invert-binary-tree/Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1思路:递归调用,对左右子节原创 2016-04-05 03:54:25 · 916 阅读 · 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 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 评论 -
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 评论