From af8ad2fded11cc5b9c34f56df015421e802aaa5f Mon Sep 17 00:00:00 2001 From: "A.G. Lalis" Date: Mon, 22 May 2017 14:23:01 +0200 Subject: [PATCH] Changed the readme a little bit. Added some structure for listing all the functions. --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ccfb2e2..ecb18e0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # Algorithms -A handy collection of C algorithms compiled into one header file for use anywhere. +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)