What is threaded binary tree in data structure?
Answers
Answered by
0
"A binary tree isthreadedby making all right child pointers that would normally be null point to the inorder successor of the node (ifit exists), and all left child pointers that would normally be null point to the inorder predecessor of the node."
Similar questions