天天看點

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
           

思路:此題僅僅是平衡二叉樹,是以不需要考慮數值大小,隻需要調整根節點的兩個分支數量即可。每一次都選取數組最中間的數值作為之前選取節點的根節點,遞歸操作,就可以保證二叉樹的平衡。

/**
 * 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 {
public:
    TreeNode* sortedArrayToBST(vector<int>& nums) {
        if(nums.size()==0)
            return NULL;
        if(nums.size()==1)
            return new TreeNode(nums[0]);
        
        int mid = nums.size()/2;
        TreeNode* root = new TreeNode(nums[mid]);
        
        vector<int> leftlist(nums.begin(),nums.begin()+mid);
        vector<int> rightlist(nums.begin()+mid+1,nums.end());
        
        root->left = sortedArrayToBST(leftlist);
        root->right = sortedArrayToBST(rightlist);
        
        return root;
    }
};