首页 > 代码库 > 109. Convert Sorted List to Binary Search Tree
109. 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.
思路:递归做。不断取中间数,建root。把链表里面的数字都读出来存在list上面进行操作。要多想想这道题是什么样的类型,要用什么方法做比较适合,方便。
/** * 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。