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?
|
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.
|
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. | |||
|
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. | |||
|
feedback
|
Also, Dictionary of Algorithms and Data Structures is very useful | |||
|
feedback
|
|
Here's yet another algo book: | |||
|
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. | |||
|
feedback
|