Description
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
Method
1.将字符串的中间值设为头结点并返回这个头结点。
2.对中间值左边的数组重复1的操作,并作为头结点的左节点返回。
3.对中间值右边的数组重复1的操作,并作为头结点的右节点返回。
Solution
1 | /** |
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
1.将字符串的中间值设为头结点并返回这个头结点。
2.对中间值左边的数组重复1的操作,并作为头结点的左节点返回。
3.对中间值右边的数组重复1的操作,并作为头结点的右节点返回。
1 | /** |