首页 > 其他分享 >补充完毕,最后一题简单,108根据前面的自己能够勉强写出

补充完毕,最后一题简单,108根据前面的自己能够勉强写出

时间:2023-01-06 00:13:48浏览次数:30  
标签:勉强 TreeNode nums int high 108 写出 return root

669. 修剪二叉搜索树

public TreeNode trimBST(TreeNode root, int low, int high) {
        if (root == null) {
            return null;
        }
        if (root.val < low) {
            return trimBST(root.right, low, high);
        }
        if (root.val > high) {
            return trimBST(root.left, low, high);
        }
        root.left = trimBST(root.left, low, high);
        root.right = trimBST(root.right, low, high);
        return root;
    }

108. 将有序数组转换为二叉搜索树

public TreeNode sortedArrayToBST(int[] nums) {
        return sortedArrayToBST(nums,0,nums.length);
    }

    public TreeNode sortedArrayToBST(int[] nums, int start, int end) {
        if (start >= end) {
            return null;
        }
        int midIndex = start+(end - start) / 2;
        int mid = nums[midIndex];
        TreeNode root = new TreeNode(mid);
        root.left = sortedArrayToBST(nums, start, midIndex);
        root.right = sortedArrayToBST(nums, midIndex + 1, end);
        return root;
    }

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

TreeNode pre;
    public TreeNode convertBST(TreeNode root) {
        travel(root);
        return root;
    }

    public void travel(TreeNode cur){
        if(cur == null){
            return;
        }
        travel(cur.right);
        if(pre !=null){
            cur.val += pre.val;
        }
        pre = cur;
        travel(cur.left);
    }

标签:勉强,TreeNode,nums,int,high,108,写出,return,root
From: https://www.cnblogs.com/Chain-Tian/p/17029227.html

相关文章