14 lines
474 B
Markdown
14 lines
474 B
Markdown
# 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
|
|
The stack is probably the most basic storage structure. It contains functions **push** to add to the top of the stack, and **pop** to remove from the top of the stack.
|
|
|
|
### Queue
|
|
|
|
### Linked List
|
|
|
|
### Heap (Priority Queue)
|