For the tree in Figure 4.70: a. Which node is the root? b. Which nodes are leaves?
Read moreTextbook Solutions for Data Structures and Algorithm Analysis in Java
Question
Since a binary search tree with N nodes has N + 1 null references, half the spaceallocated in a binary search tree for link information is wasted. Suppose that if anode has a null left child, we make its left child link to its inorder predecessor, andif a node has a null right child, we make its right child link to its inorder successor.This is known as a threaded tree, and the extra links are called threads.a. How can we distinguish threads from real children links?b. Write routines to perform insertion and deletion into a tree threaded in themanner described above.c. What is the advantage of using threaded trees?
Solution
The first step in solving 4 problem number 50 trying to solve the problem we have to refer to the textbook question: Since a binary search tree with N nodes has N + 1 null references, half the spaceallocated in a binary search tree for link information is wasted. Suppose that if anode has a null left child, we make its left child link to its inorder predecessor, andif a node has a null right child, we make its right child link to its inorder successor.This is known as a threaded tree, and the extra links are called threads.a. How can we distinguish threads from real children links?b. Write routines to perform insertion and deletion into a tree threaded in themanner described above.c. What is the advantage of using threaded trees?
From the textbook chapter Trees you will find a few key concepts needed to solve this.
Visible to paid subscribers only
Step 3 of 7)Visible to paid subscribers only
full solution