Given a sorted array, write a function that will create a binary search tree from the array.
Anonym
Make the middle element of the array the root and have the function return the root. recursively call the function for the left subarray and right subarray to make the left and right subtrees.