Suppose you are given a sorted array in increasing order. Write a function to convert it into a binary search tree.
We can add the elements of the input array to the binary search tree using recursion.
Time complexity = \( O(n) \). |