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

[Leetcode][BST][Convert Sorted Array to Binary Search Tree]

时间:2014-07-06 12:53:50      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   io   

把一个排好序的vector转换为一颗二分查找树。

很简单的题目,递归即可,保证边界不要出错。

 1 /**
 2  * Definition for binary tree
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12     typedef vector<int>::iterator Iter;
13     TreeNode *toBST(Iter begin, Iter end) {
14         int n = end - begin;
15         if (n <= 0) {
16             return NULL;
17         }
18         int pos = n / 2;
19         TreeNode *node = new TreeNode(*(begin + pos));
20         node->left = toBST(begin, begin + pos);
21         node->right = toBST(begin + pos + 1, end);
22         return node;
23     }
24     TreeNode *sortedArrayToBST(vector<int> &num) {
25         return toBST(num.begin(), num.end());
26     }
27 };

一次AC。

[Leetcode][BST][Convert Sorted Array to Binary Search Tree],布布扣,bubuko.com

[Leetcode][BST][Convert Sorted Array to Binary Search Tree]

标签:style   blog   color   os   for   io   

原文地址:http://www.cnblogs.com/poemqiong/p/3825867.html

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