2

Do you know any useful resource, book, article, webpage about data structures?

I found very useful wikibooks page: http://en.wikibooks.org/wiki/Data_Structures

What helps you with data structure design?

marianboda
  • 793
  • 6
  • 14
  • possible duplicate of http://stackoverflow.com/questions/1563188/comparisons-of-data-structures-algorithms-basic-computer-science-online-resour , http://stackoverflow.com/questions/2301555/learning-algorithms-and-data-structures-fundamentals , http://stackoverflow.com/questions/366317/good-data-structures-text-book , etc. – ax. May 11 '10 at 07:59

2 Answers2

5

The ultimate collection on data-structures, their implementation and mathematical reasoning is Donald Knuth's The Art of Computer Programming series. Here's an amazon link.

Johannes Rudolph
  • 34,580
  • 14
  • 109
  • 165
2

AV Aho, JE Hopcroft, JD Ullman (1983) Data structures and algorithms. Addison-Wesley.

After Knuth, the classic. And possible to read cover to cover.

Charles Stewart
  • 11,453
  • 4
  • 45
  • 84