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

【leetcode刷题笔记】Convert Sorted Array to Binary Search Tree

时间:2015-04-01 00:16:07      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

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


 

题解:递归就可以了。

Java代码如下:

 1 /**
 2  * Definition for binary tree
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 public class Solution {
11     public TreeNode sortedArrayToBST(int[] num) {
12         return Helper(num, 0, num.length-1);
13     }
14     public TreeNode Helper(int[] num,int begin,int end){
15         if(begin > end)
16             return null;
17         
18         int mid = (begin + end)/2;
19         TreeNode root = new TreeNode(num[mid]);
20         root.left = Helper(num, begin, mid-1);
21         root.right = Helper(num, mid+1, end);
22         return root;
23     }
24 }

 

【leetcode刷题笔记】Convert Sorted Array to Binary Search Tree

标签:

原文地址:http://www.cnblogs.com/sunshineatnoon/p/4382254.html

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