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
Kyler Smith, 2017 Stack data structure implementation.
Definition: binary_search_tree.c:14
main
int main()
Driver code.
Definition: client.c:70
node
struct Node node
Node, the basic data structure of the tree.
search
void search(node *root, int ele)
searches for the element
Definition: threaded_binary_trees.c:98
TrieNode
Definition: trie.c:15