/*
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.
Input: The root of a Binary Search Tree like this:
5
/ \
2 13
Output: The root of a Greater Tree like this:
18
/ \
20 13
*/
class Convert_BST_to_Greater_Tree: NSObject {
var sum = 0
func convertBST(_ root: TreeNode?) -> TreeNode? {
convert(root)
return root
}
func convert(_ root: TreeNode?) {
if root == nil {
return
} else {
convert(root?.right)
root!.val += sum;
sum = root!.val;
convert(root?.left)
}
}
}
Convert_BST_to_Greater_Tree
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 这道题让我们将二叉搜索树转为较大树,通过题目汇总的例子可以明白,是把每个结点值加上所有比它大的结点值总和当作新的结...
- 这道题我一开始没看清是BST,以为只是普通binary tree. 一开始觉得会很麻烦,后来发现是BST,那么要f...
- tag 上说是 tree 类型的题目,但我觉得这更像是一个 backtracking的题目 解法: 因为题目要求所...
- 二叉树的题目挺多的,写了个初始化二叉树的函数,以后用 题目 Given a Binary Search Tree ...