首页 > 其他 > 详细

convert-sorted-list-to-binary-search-tree

时间:2016-05-20 23:47:26      阅读:301      评论:0      收藏:0      [点我收藏+]

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

public class Solution {
    public TreeNode sortedListToBST(ListNode head) {
        int len=lenOFlist(head);
         TreeNode root=creatTree(head,0,len-1);
        return root;
        
    }
    public TreeNode creatTree(ListNode head,int left,int right){
        if(left>right)return null;
        int mid=(right+left+1)/2;/// right-(right-left+1)/2
        ListNode p=head;
        for (int i = left; i < mid; i++) {
            p=p.next;
        }
        TreeNode node=new TreeNode(p.val);
        TreeNode leftTree=creatTree(head, left, mid-1);
        TreeNode rightTree=creatTree(p.next, mid+1, right);
        node.left=leftTree;
        node.right=rightTree;
        
        return node;
        
    }
    public int lenOFlist(ListNode head){
        ListNode p=head;
        int count = 0;
        while(p!=null){
            count++;
            p=p.next;
        }
        return count;
    }
    
}

 

convert-sorted-list-to-binary-search-tree

原文:http://www.cnblogs.com/softwarewebdesign/p/5513721.html

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