List * create(double value)
Create list function, a new list containing one node will be created.
Definition: doubly_linked_list.c:92
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