Please tell me a good book for studying data structures in C. Feel free to post links of good e-books if you have any. What should be the strategy while learning this topic?

link|improve this question

67% accept rate
feedback

closed as off topic by Robert Harvey Apr 19 at 23:09

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

5 Answers

up vote 5 down vote accepted

You can try "Introduction to Algorithms" by Cormen et al. (often called CLRS in short). It is not exactly targeted at C, but all code is in easily readable pseudocode. This is probably the single best book for this topic I've ever read.

link|improve this answer
feedback

C Interfaces and Implementations: Techniques for Creating Reusable Software, by David Hanson is pretty good, with lots of good data structures.

Also, Algorithms in C, by Robert Sedgewick.

link|improve this answer
feedback
  • Algorithms in C - Robert Sedgewick
  • Mastering Algorithms with C - Kyle Loudon
  • Teach Yourself Data Structures&Algorithms in 24 Hours by Robert Lafore is a good choice If you know c++.

Also, Dictionary of Algorithms and Data Structures is very useful

link|improve this answer
feedback

Here's yet another algo book:

http://www.jjj.de/fxt/fxtbook.pdf

link|improve this answer
feedback

Check this book: http://www.amazon.com/Beginning-Data-Structures-Using-ebook/dp/B0054JJ3BY

It contains practical implementation of almost all data structures programs in C language. It does have a step by step explanation of each program as well. This book is available in kindle & paperback edition.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.