码迷,mamicode.com
首页 > 其他好文 > 详细

13.Convert BST to Greater Tree(将树转为更大树)

时间:2019-04-15 20:13:07      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:code   val   思路分析   hat   inpu   class   bin   def   ==   

Level:

??Easy

题目描述:

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.

Example:

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

思路分析:

??中序遍历是先访问左子树然后根节点,然后右子树,这道题我们可以修改一下中序遍历的顺序,先访问右子树,然后根节点,然后左子树,在访问的过程中我们更新节点的值,最后得到题目的结果。

代码:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    int sum=0;
    public TreeNode convertBST(TreeNode root) {
        if(root==null)
            return null;
        if(root!=null){
            convertBST(root.right);//先访问右子树
            root.val=root.val+sum; //更新节点的值
            sum=root.val;
            convertBST(root.left);
        }
        return root;
    }
}

13.Convert BST to Greater Tree(将树转为更大树)

标签:code   val   思路分析   hat   inpu   class   bin   def   ==   

原文地址:https://www.cnblogs.com/yjxyy/p/10712386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!