N0vice17 / DataStructures-And-Algorithm

This Repository covers all the topics of dsa which will help you to learn dsa in a better way
GNU General Public License v3.0
30 stars 47 forks source link

Create ThreadedBinaryTree.c #93

Closed Sarthak9504 closed 1 year ago

Sarthak9504 commented 1 year ago

This code is the implementation of a subtype of binary trees which is threaded binary tree in C language. As the name says this type has left and right threads for each node that connects their inorder predecessor and inorder successor respectively which makes it easier to implement inorder traversal across the tree.

Sarthak9504 commented 1 year ago

Hey @N0vice17 please review my PR