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

Convert Sorted Array to Binary Search Tree

时间:2014-10-08 10:09:55      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   java   for   sp   div   art   

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

答案

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    int []num;
    public TreeNode toBST(int start,int end)
    {
        if(start>end)
        {
            return null;
        }
        int middle=start+(end-start)/2;
        TreeNode result=new TreeNode(num[middle]);
        result.left=toBST(start,middle-1);
        result.right=toBST(middle+1,end);
        return result;
    }
    public TreeNode sortedArrayToBST(int[] num) {
        if(num==null||num.length==0)
        {
            return null;
        }
        this.num=num;
        return toBST(0,num.length-1);
    }
}


Convert Sorted Array to Binary Search Tree

标签:style   color   io   ar   java   for   sp   div   art   

原文地址:http://blog.csdn.net/jiewuyou/article/details/39889603

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