首页 > 其他 > 详细

二叉树--转换二叉树(leetcode 108,leetcode 109)

时间:2020-07-15 22:30:44      阅读:47      评论:0      收藏:0      [点我收藏+]

基础知识

  1. 二叉树搜索树BST的中序遍历是升序序列,所以108和109中给出的数组和链表的顺序即为BST中序遍历的顺序

  2. 给定BST的中序序列,肯定没法唯一确定BST的

  3. 在2的基础上要求BST平衡,也是没法唯一确定BST的


leetcode 108

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

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

时间复杂度:O(N),数组中每个元素都要访问一次
空间复杂度:O(LOGN),二分法的递归栈

二叉树--转换二叉树(leetcode 108,leetcode 109)

原文:https://www.cnblogs.com/swifthao/p/13307819.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!