Sorted Linked List to Balanced BST
Posted: 6 Nov, 2020
Difficulty: Moderate
You have been given a singly linked list in which nodes are present in increasing order. Your task is to construct a Balanced Binary Search Tree with the same data elements as the given Linked List.
A Balanced BST is defined as a BST in which the height of two subtrees of every node differs no more than 1.
Input Format :
The first line of input contains an integer ‘T’ denoting the number of test cases to run. Then the test case follows.
The only line of each test case contains the elements of the singly linked list separated by a single space and terminated by -1. Hence, -1 would never be a list element.
Output Format :
For each test case, print the nodes of the tree in the level order form separated by single spaces (Print -1 for NULL nodes). Refer to the below example for further clarification.
Print the output for every test case in a separate line.
For Example
Consider the Binary Search Tree-
The above BST will be printed as-
12 10 14 -1 -1 -1 16 -1 -1
Explanation :
Level 1 :
The root node of the tree is 12
Level 2 :
Left child of 12 = 10
Right child of 12 = 14
Level 3 :
Left child of 10 = null(-1)
Right child of 10 = null (-1)
Left child of 14 = null(-1)
Right child of 16 = 16
Level 4 :
Left child of 16 = null (-1)
Right child of 16 = null (-1)
The first not-null node (of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The output for each test case ends when all nodes at the last level are null (-1).
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 100
0 <= N <= 1000
1 <= Data <= 10^9
Data != -1
Time Limit: 1sec
Approach 1
The key observation here is that the middle node of the linked list would be the root of the BST. Therefore the nodes which lie to the left of the middle node will necessarily form the left subtree of the BST and which lies right to it will form the right subtree. So, we will devise a recursive solution based on this observation.
Algorithm
- We will keep the head pointer of the linked list as one of our parameters of the recursion function.
- We will find the pointer to the middle node of the linked list by the standard two pointers approach.
- The data of this node will be copied to the current root of the subtree.
- Let the previous pointer to the middle node be prev. We will set prev -> next = NULL.
- We will recurse on the left half of this linked list and by passing the head pointer as our parameter. This will necessarily become the left subtree of the current root node.
- We will recurse on the right half of the linked list by passing the middle -> next pointer as our parameter. This will necessarily become the right subtree of the current root node.
Approach 2
The inorder traversal of the BST gives elements in sorted order. Therefore, the linked list representation is the inorder traversal of a BST. So we can devise a recursive solution similar to the inorder traversal of a BST.
Algorithm
- First, we will find the size of the linked list by iterating through it. Let this size be ‘N’.
- We will keep (leftBoundary, rightBoundary) as our parameters of the recursion, with initial values equal to (0, N-1).
- We can find the index of the middle element ‘mid’, of the linked list by (leftBoundary + rightBoundary)/2.
- Now, we recurse on (leftBoundary, mid-1), which will be the left subtree of the BST.
- We will assign head -> data to the current node of BST and reassign the head pointer as head -> next.
- Next, we recurse on (mid+1, rightBoundary), which will be the right subtree of the BST.
- At any point if (leftBoundary > rightBoundary), we will return NULL.
SIMILAR PROBLEMS
Insertion In Circular Linked List
Posted: 21 Apr, 2022
Difficulty: Easy
Insertion In A Singly Linked List
Posted: 22 Apr, 2022
Difficulty: Easy
Remove Loop
Posted: 22 Apr, 2022
Difficulty: Moderate
Deletion In Doubly Linked List
Posted: 22 Apr, 2022
Difficulty: Easy
Insertion In Doubly Linked List
Posted: 24 Apr, 2022
Difficulty: Easy