Algorithms_in_C  1.0.0
Set of algorithms implemented in C.
acronym.h
1 #ifndef ACRONYM_H
2 #define ACRONYM_H
3 
4 char *abbreviate(const char *phrase);
5 
6 #endif
node
Node, the basic data structure in the tree.
Definition: binary_search_tree.c:15
main
int main()
Driver code.
Definition: client.c:70
search
void search(node *root, int ele)
searches for the element
Definition: threaded_binary_trees.c:98
node
struct node node
Node, the basic data structure in the tree.
insert
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
TrieNode
Definition: trie.c:15