码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Convert Sorted Array to Binary Search Tree

时间:2015-04-09 17:08:07      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

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

 

Hide Tags
 Tree Depth-first Search
 
 
方法一:递归,也是dfs
 
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
    public:
        TreeNode *sortedArrayToBST(vector<int> &num)
        {   
            int size = num.size();
            if(size == 0)
                return NULL;
             return sortedArrayToBSTInternal(num, 0, size - 1); 

        }   

        TreeNode *sortedArrayToBSTInternal(vector<int> &num, int low, int high)
        {   

            // the code is very important, i.e: low = 4, hight = 5, mid = 4, 
            // will call sortedArrayToBSTInternal(num, 4, 3)
            if(low > high)
                return NULL;
            if(low == high)
                return new TreeNode(num[low]); 

            int mid = (high-low)/2 + low;
           
            TreeNode *root = new TreeNode(num[mid]); 
            TreeNode *left = sortedArrayToBSTInternal(num, low, mid - 1); 
            TreeNode *right = sortedArrayToBSTInternal(num, mid + 1, high);
            root->left = left;
            root->right= right;
            return root;
        }   
};

 

 
 
 
 

[LeetCode] Convert Sorted Array to Binary Search Tree

标签:

原文地址:http://www.cnblogs.com/diegodu/p/4409809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!