标签:
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; } * } */ /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { public TreeNode sortedListToBST(ListNode head) { List<Integer> res=new ArrayList<Integer>(); while(head!=null) { res.add(head.val); head=head.next; } return helper(res,0,res.size()-1); } public TreeNode helper(List<Integer> list,int low,int high) { if(low>high) { return null; } int mid=low+(high-low)/2; TreeNode root=new TreeNode(list.get(mid)); root.left=helper(list,low,mid-1); root.right=helper(list,mid+1,high); return root; } }
109. Convert Sorted List to Binary Search Tree
标签:
原文地址:http://www.cnblogs.com/Machelsky/p/5940761.html