What is threaded binary tree?
Threaded binary tree is a simple binary tree but they have a speciality that null pointers of leaf node of the binary tree is set to inorder predecessor or inorder successor.
The main idea behind setting such a structure is to make the inorder and preorder traversal of the tree faster without using any additional data structure(e.g auxilary stack) or memory to do the traversal.
Types of Threaded Binary Tree
There are two types of threaded binary tree:
Single T...
Published on April 03, 2021 14:24