Title | : | Algorithms in C, Parts 1-4: Fundamentals, Data Structures, Sorting, Searching |
Author | : | |
Rating | : | |
ISBN | : | 0201314525 |
ISBN-10 | : | 0785342314526 |
Language | : | English |
Format Type | : | Paperback |
Number of Pages | : | 720 |
Publication | : | First published August 22, 1997 |
Algorithms in C, Parts 1-4: Fundamentals, Data Structures, Sorting, Searching Reviews
-
Best practical book on algorithms I have stumbled upon.
Unlike CLRS this book comes with code written in C and also with a basic explanation for data structures.
The first 2 chapters are an introduction into the world of algorithms, building a perspective onto what will follow, explaining the principles governing algorithm analysis.
Next there are a few chapters on data structures, including ADTs(abstract data types) - arrays, linked lists, strings, stacks, queues, trees, graphs - and the procedures used to manipulate them. Some methods like recursion, divide and conquer and dynamic programming (memoization) are also discussed in detail.
All popular sorting methods are covered next: selection sort, insertion sort, bubble sort, shellsort, quick sort, mergesort, heapsort (with an in detailed explanation of the heap data structure), radix sort, and also some other special types of sort.
Searching is the main interest of the last half of the book. Symbol tables data structures and algorithms(most of which are tree algos) are covered in depth.
Every chapter contains a basic mathematical analysis mentioning the people that are experts in a specific domain. So if someone is interested in getting a more detailed version/explanation/analysis can easily follow the references.
Every chapter ends with a list of exercises most of which are not quite trivial. I solved only about half of them because otherwise it would take me forever to finish the book. But for a pedantic type this is a great way to improve thinking and coding skills. If someone would solve all the exercises, this will almost guarantee that the person could tackle any programming challenge with regards to algorithmic solving or choosing the right data structure for a task.
All in all, reading this book and solving the exercises, will make anybody a better programmer, no matter the skills. -
S & Algorithm implemented in C. No other book I could find has this depth & code
-
nice