From b0b48e42eae4201434c9a822ba863c258c4ae850 Mon Sep 17 00:00:00 2001 From: Simon Waldherr Date: Wed, 28 Oct 2020 14:52:45 +0100 Subject: [PATCH] fix README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3435acb..e5f9664 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,19 @@ -Algorithms in C -================================================ -My takes of **Algorithms in C - Fundamentals, Data Structures, Sorting, Searching (3rd Edition)** book by **Robert Sedgewick**. +# Algorithms in C + +My takes of **[Algorithms in C - Fundamentals, Data Structures, Sorting, Searching (3rd Edition)](https://www.amazon.com/-/de/dp/0201314525)** book by **Robert Sedgewick**. It contains code for both the **examples** and the **exercises**. -###Organization +## Organization Each *dir* has only the code from the specific chapter. Each *dir* contains 2 *subdirs*, one with the code for the examples and one with answers for the exercises. -###Compiling +## Compiling All the programs were compiled with the `-std=c99` flag and should work out of the box. -###Missing & Other +## Missing & Other Some of the answers for particular exercises are missing. I have omitted exercises which require only a explanatory type of solution or for which I found no value in solving.