vote up 3 vote down star
1

Which is the best book on Data structures to refer to?

flag

64% accept rate
What do you want to use the data structures for. If you want them to be read from hd you also have the added complexity of minimizing disk io and usefull data should be located together for example. – Ctrl Alt D-1337 Dec 14 '08 at 11:01
Seems like a subsequent community wiki entry was asked several months after this one: stackoverflow.com/questions/366317/…. – schultkl Nov 27 at 4:40

8 Answers

vote up 1 vote down check

Data Structures and Algorithms by Aho, Hopcroft, and Ullman. A classic text on the subject.

link|flag
vote up 0 vote down

The California State University at Sacramento chose Adam Drozdek's "Data Structures and Algorithms in Java", third edition (ISBN-13: 978-9814239233) for this semester's data structures course. I have found it to be helpful and insightful. Dr. Drozdek also maintains a C++ book with the same material: "Data Structures and Algorithms in C++".

link|flag
vote up 1 vote down

Data Structures and Algorithms in Java by Robert Lafore

alt text

One of the best books I have seen on data structures.

link|flag
vote up 0 vote down

Like others have said, Introduction to Algorithms is amazing. It was the textbook for one of my college courses, and it's the one I've used the most outside of that class out of all my textbooks. What I like about it is it's all in very clear pseudo-code, so it's rather language agnostic.

link|flag
vote up 0 vote down

Data Structures and Algorithms with Object-Oriented Design Patterns in C++ by Bruno Preiss http://www.brpreiss.com

link|flag
vote up 1 vote down

Seeing as you have a C and C++ tag, Algorithms in C++ by Robert Sedgewick is excellent. I personally started with Knuth's book which used to be the standard reference for a long time, but I'd say it is a bit dated at this stage.

link|flag
Knuth's book is dated ? You must be kidding. – Vijay Dev Dec 14 '08 at 12:42
I have the 1973 edition (2 vols), which is a great couple of books, but certainly getting on. – smacl Dec 16 '08 at 7:43
vote up 4 vote down

The ancient Algorithms + Data Structures = Programs by Niklaus Wirth is recommended by some (see customer reviews on the Amazon page). Be warned - it uses Pascal examples and old terminology.

link|flag
vote up 10 vote down

There are many good books on Data Structures, but I found these two books very useful:

Introduction to Algorithms and The Algorithm Design Manual, the second one though is more about algorithms.

link|flag
+1 Cormen, Lieserson & Rivest is a really good book. If I can learn to code a red-black tree in two evenings from it they must be doing something right. Highly recommended. – ConcernedOfTunbridgeWells Dec 14 '08 at 9:36
intro to algorithms is the book I'm using right now for algorithms class. It's pretty big but a pretty good book too. – Hazar Dec 14 '08 at 19:44
I don't think Algorithm Design Manual can serve as a data structures text book. First: it is mainly an algorithm book. Second: it includes quite lot of maths, it is dense and in places it suffers from poor language. It is a book for fairly advanced learners. – Jahanzeb Farooq Sep 18 at 10:18

Your Answer

Get an OpenID
or

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