Algorithms/README.md

19 lines
710 B
Markdown
Raw Normal View History

2017-05-22 12:13:50 +00:00
# Algorithms
A handy collection of C algorithms compiled into one header file for use anywhere. Feel free to include this file with any C project, as long as you keep the comment at the top with a little copyright notice.
## Functionality
### Stack
2017-05-22 13:36:54 +00:00
The stack is probably the most basic storage structure, using the 'first-in, first-out' approach. The following functions are the only ones available for stack manipulation, as it is quite a minimalistic data structure.
* ``` Stack createStack() ```
* ``` void freeStack(Stack *s) ```
* ``` void pushToStack(int item, Stack *s) ```
* ``` int popFromStack(Stack *s) ```
* ``` void printStack(Stack s) ```
### Queue
### Linked List
### Heap (Priority Queue)