Convert Sorted Array to Binary Search Tree
Question
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
Analysis
这题需要将一个排好序的链表转成一个平衡二叉树,我们知道,对于一个二叉树来说,左子树一定小于根节点,而右子树大于根节点。所以我们需要找到链表的中间节点,这个就是根节点,链表的左半部分就是左子树,而右半部分则是右子树,我们继续递归处理相应的左右部分,就能够构造出对应的二叉树了。
故每次只需要找到数组的中间节点,在递归的对中点左右两部分的数组进行同样的convert操作赋给左右子树即可。
Code
|
|
Convert Sorted List to Binary Search Tree
Question
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
Analysis
这题的难点在于如何找到链表的中间节点,我们可以通过fast,slow指针来解决,fast每次走两步,slow每次走一步,fast走到结尾,那么slow就是中间节点了。
Code
- Un-height-balanced
|
|
- Height- Balanced Ver
|
|