0
3.7kviews
Explain threaded Binary tree
1 Answer
| written 7.2 years ago by | • modified 7.2 years ago |
In a linked list representation of binary trees, there are more null links than the node links. Such null links are replaced by pointers called as threads, such a tree is called as Threaded Binary Tree.
A left null link of a node is replaced with the address of its …