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

109. Convert Sorted List to Binary Search Tree

时间:2017-09-30 10:16:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ret   head   tree   sort   null   turn   class   node   solution   

class Solution {
    ListNode lnode=null;
    public TreeNode sortedListToBST(ListNode head) {
        int size=0;
        ListNode p=head;
        while(p!=null)
        {
            p=p.next;
            size++;
        }
        lnode=head;
        return buildBST(size);
    }
    private TreeNode buildBST(int size){
        if(size==0)
            return null;
        TreeNode tnode=new TreeNode(0);
        tnode.left=buildBST(size/2);
        tnode.val=lnode.val;
        lnode=lnode.next;
        tnode.right=buildBST(size-size/2-1);
        return tnode;
    }
}

  

109. Convert Sorted List to Binary Search Tree

标签:ret   head   tree   sort   null   turn   class   node   solution   

原文地址:http://www.cnblogs.com/asuran/p/7613395.html

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