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

Convert Sorted List to Binary Search Tree

时间:2014-10-20 11:49:53      阅读:114      评论:0      收藏:0      [点我收藏+]

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

Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.

 

答案

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; next = null; }
 * }
 */
/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    int []array;
    public TreeNode sortListToBST(int start ,int end)
    {
        int middle=start+((end-start)>>1);
        TreeNode root=new TreeNode(array[middle]);
        if(middle>start)
        {
            root.left=sortListToBST(start,middle-1);
        }
        if(middle<end)
        {
            root.right=sortListToBST(middle+1,end);
        }
        return root;
    }
    public TreeNode sortedListToBST(ListNode head) {
        if(head==null)
        {
            return null;
        }
        array=new int[65535];
        int N=0;
        while(head!=null)
        {
            array[N++]=head.val;
            head=head.next;
        }
        return sortListToBST(0,N-1);
    }
}


Depth-first Search Linked List

Convert Sorted List to Binary Search Tree

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

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

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