explain threaded binary tree.
Answers
Answered by
2
Explanation:
"A binary tree is threaded by making all right child pointers that would normally be null point to the in order successor of the node ( if it exists), and all left child pointers that would normally be null point to the in order predecessor of the node".
Similar questions