Node, the basic data structure in the tree.
Definition: binary_search_tree.c:15
int find(node *root, int data)
Search procedure, which looks for the input key in the tree and returns 1 if it's present or 0 if it'...
Definition: binary_search_tree.c:152