669. Trim a Binary Search Tree

来源:互联网 发布:淘宝客卖家推广教程 编辑:程序博客网 时间:2024/06/15 23:27

原题链接

/** * Created by Joe on 2017/12/14. * https://leetcode.com/problems/trim-a-binary-search-tree/description/ */public class P669 {    public TreeNode trimBST(TreeNode root, int L, int R) {        if (root == null) return null;        if (root.val < L) return trimBST(root.right, L, R);        if (root.val > R) return trimBST(root.left, L, R);        root.left = trimBST(root.left, L, R);        root.right = trimBST(root.right, L, R);        return root;    }}
原创粉丝点击