平衡二叉树
lfksdau
这个作者很懒,什么都没留下…
展开
-
在二叉查找树中插入节点
问题: 给定一棵二叉查找树和一个新的树节点,将节点插入到树中。 你需要保证该树仍然是一棵二叉查找树。 注意事项 You can assume there is no duplicate values in this tree + node. 您在真实的面试中是否遇到过这个题? Yes 样例 给出如下一棵二叉查找树,在插原创 2017-05-18 17:35:59 · 138 阅读 · 0 评论 -
Convert BST to Greater Tree
题目: Given a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus sum of all keys greater than the original key in BST原创 2017-05-21 17:23:54 · 128 阅读 · 0 评论