The code creates a binary search tree, which is a non-linear data structure.

It is built using the C programming language. The binary search tree was built using a linkedlist.

I learned about the uses of binary search tree, and how a bst can make searching an element in a list easier, since if it's a smaller element than the value in the root node, then we can just go to the left subtree to search it, and if it has a greater value than the root node, then we can just search the right subtree.

Built With

Share this project:

Updates