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
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
main
int main(int argc, char **argv)
the main function take one argument of type char* example : .
Definition: c_atoi_str_to_integer.c:72
TrieNode
Definition: trie.c:15