Given a sorted array, write a function that will create a binary search tree from the array.
Anonymous
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.
Check out your Company Bowl for anonymous work chats.