Given a Sorted Array, Convert it into its Balanced Binary search TreeObjective: You have been given a sorted singly List, you need to convert it into balanced binary search tree.
Why balanced binary tree is important:
You can also create the first node as root and insert all other nodes to the right of the tree because List is in increasing order but this constructed tree won’t be a balanced tree, it will be the skewed tree and to perform operations on this tree will be O(n), not O(logn).
Input: An sorted Singly Linked List
Output: Balanced Binary Tree
Example:
Approach:
Read moreGiven a Sorted Singly Linked List Array, Convert it into a Balanced Binary search Tree.