LeetCode: 108. Convert Sorted Array to Binary Search Tree

LeetCode: 108. Convert Sorted Array to Binary Search Tree

题目描述

Given an array where elements are sorted in ascending order, convert it to a height balanced BST.

For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

Example:

Given the sorted array: [-10,-3,0,5,9],

One possible answer is:[0,-3,9,-10,null,5], which represents the following height balanced BST:

      0
 / \
   -3 9  / /
 -10 5

题目大意: 根据给定的有序数组,生成一种可能的平衡二叉树。

解题思路

中位数作为根节点,中位数左/右边的所有元素作为左/右子树的节点,用同样的方法处理左边和右边的元素,生成左子树和右子树。

AC 代码

/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */
class Solution 
{
private:
    // 将 nums 数组中的 [beg, end) 区间转换成平衡二叉树 BST.
    TreeNode* sortedArrayToBSTRef(vector<int>& nums, int beg, int end) 
    {
        if(beg >= end) return nullptr;

        // 中位数作为根节点
        int mid = (beg + end)/2;
        TreeNode* root = new TreeNode(nums[mid]);

        // 同样的操作生成左/右子树
        root->left = sortedArrayToBSTRef(nums, beg, mid);
        root->right = sortedArrayToBSTRef(nums, mid+1, end);

        return root;
    }
public:
    TreeNode* sortedArrayToBST(vector<int>& nums) 
    {
        return sortedArrayToBSTRef(nums, 0, nums.size());
    }
};
全部评论

相关推荐

头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务