A handy collection of C algorithms compiled into one header file for use anywhere.
Go to file
A.G. Lalis 4c6ff8bb23 Added handyargs.h and code for stacks.
Implemented full stack functionality for integer items. Functions added:
createStack, freeStack, pushToStack, popFromStack, printStack.
2017-05-22 15:04:25 +02:00
source Added handyargs.h and code for stacks. 2017-05-22 15:04:25 +02:00
.gitignore Added git ignore 2017-05-22 14:28:05 +02:00
README.md Changed the readme a little bit. 2017-05-22 14:23:01 +02:00

README.md

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)