Fish Touching🐟🎣

Threaded Binary Tree

Jun 3, 2023

# Idea

The idea of threaded binary trees is to make inorder traversal faster and do it without stack and without recursion. A binary tree is made threaded by making all right child pointers that would normally be NULL point to the inorder successor of the node (if it exists).