Node, the basic data structure in the tree.
Definition: binary_search_tree.c:15
void search(node *root, int ele)
searches for the element
Definition: threaded_binary_trees.c:98
node * insert(node *root, int data)
Insertion procedure, which inserts the input key in a new node in the tree.
Definition: binary_search_tree.c:46