【1错-1】Trim a Binary Search Tree

2019-01-19  本文已影响0人  7ccc099f4608

https://leetcode.com/problems/trim-a-binary-search-tree/

日期 是否一次通过 comment
2019-01-19 22:38 对preOrder & 分治理解不够深刻
image.png

(来源:https://leetcode.com/problems/trim-a-binary-search-tree/

  1. 非递归方法:TODO;
  2. 递归方法:
    2.1 递归思想:preOrder,首先判断root是否满足条件,再递归判断左右子树;

1. 非递归


2.1 递归

class Solution {
    public TreeNode trimBST(TreeNode root, int L, int R) {
        if(root == null) {
            return root;
        }
        
        if(root.val > R) {
            return trimBST(root.left, L, R);
        }
        
        if(root.val < L) {
            return trimBST(root.right, L, R);
        }
        
        root.left = trimBST(root.left, L, R);
        root.right = trimBST(root.right, L, R);
        
        return root;
        
    }
}
上一篇下一篇

猜你喜欢

热点阅读