LeetCode - 538 把二叉搜索树转换为累加树

LeetCode - 538 把二叉搜索树转换为累加树
LeetCode - 538 把二叉搜索树转换为累加树
LeetCode - 538 把二叉搜索树转换为累加树

class Solution {
    int sum = 0;
    public TreeNode convertBST(TreeNode root) {
        visitTree(root);
        return root;
    }
    public void visitTree(TreeNode root){
        if(root != null){
            visitTree(root.right);
            root.val = root.val + sum;
            sum = root.val;
            visitTree(root.left);
        }
    }
}
上一篇:【Leetcode】NO.199 二叉树的右视图 (C++&Python) [二叉树]


下一篇:Linux - ftp