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

Posted Adding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了convert-sorted-list-to-binary-search-tree相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章