#108
Convert Sorted Array to Binary Search Tree
newbie · 225 · lc easy +17 · failed · 75.3% accepted · 11,869 likes · top 86%
Description
An integer array nums is provided in sorted ascending order. Build and return a height-balanced binary search tree from these elements.
Example 1:
Input: nums = [-10,-3,0,5,9]
Output: [0,-3,9,-10,null,5]
Explanation: [0,-10,5,null,-3,null,9] is also accepted:
Example 2:
Input: nums = [1,3]
Output: [3,1]
Explanation: [1,null,3] and [3,1] are both height-balanced BSTs.
Code
1
2
3
4
5
6
7
8
9