首页 > 其他 > 详细

【Lintcode]177.Convert Sorted Array to Binary Search Tree With Minimal Height

时间:2017-05-13 15:51:25      阅读:288      评论:0      收藏:0      [点我收藏+]

题目:

Given a sorted (increasing order) array, Convert it to create a binary tree with minimal height.

Example

Given [1,2,3,4,5,6,7], return

     4
   /     2     6
 / \    / 1   3  5   7

题解:

Solution 1 ()

class Solution {
public:
    TreeNode *sortedArrayToBST(vector<int> &A) {
        if (A.size() == 0) return nullptr;
        
        return buildTree(A, 0, A.size() - 1);
    }
    TreeNode* buildTree(vector<int>&A, int begin, int end) {
        if (begin > end) {
            return nullptr;
        }
        int mid = begin + (end - begin) / 2;
        TreeNode* root = new TreeNode(A[mid]);
        root->left = buildTree(A, begin, mid - 1);
        root->right = buildTree(A, mid + 1, end);
        return root;
    }
};

 

【Lintcode]177.Convert Sorted Array to Binary Search Tree With Minimal Height

原文:http://www.cnblogs.com/Atanisi/p/6849071.html

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