vote up 6 vote down star
5

I loved the Head First series book on object oriented design. It was a very gentle and funny introduction to the subject. I am currently taking a data structures class and find the text we are using (Kruse/Ryba Data Structures and Program Design in C++) to be very dry and hard to comprehend. This is mostly due I think to my own limitations in the area of Mathematics.

Does anyone know of a Data Structures text that is written in a lighter style, with a sense of humor, that still covers all the basics like Binary Trees, B Trees, and Graphs?

flag

6 Answers

vote up 5 vote down

The Algorithm Design Manual by Steve Skiena isn't exactly a barrel of laughs, but it's relatively light on the deeper mathematics and contains lots of what he calls "War Stories", which are illustrative examples from real world situations where algorithm work really paid off (or, sometimes, totally failed). He's also got his audio and video lectures online, and he's got a nice lecture style with bits of humor interspersed, so it might be what you are looking for.

link|flag
This is a good book, I recommend it. – Simucal Jan 18 at 18:33
I like this book as well, although I find it has less overall content/theory than a dry book like "Introduction to Algorithms" by Carmen, etc. I enjoyed the tale of the psychic number picker :) – Cervo Jan 18 at 18:37
vote up 0 vote down

I'm currently using Larry Nyhoff's ADTs, Data Structures, and Problem Solving with C++.

It's not as light or enjoyable to read as a Head First series book, but it's really well detailed on binary trees, b trees, and graphs. Its code samples have been really helpful for completing my assignments. No higher math knowledge is required to understand the text (except, of course, on the chapter dedicated to algorithm analysis).

link|flag
vote up 0 vote down

This too is not light either but it is pretty decent

Algorithms and data structures by Robert Lafore

link|flag
vote up 0 vote down

Beginning Algorithms by Harris and Ross (a Wrox Press book) was one I liked, although its examples are presented in Java, not C++. Might be a nice accompaniment to the text you're trudging through in class.

link|flag
vote up 0 vote down

There is nothing more readable and meaningful, in my opinion than http://www.amazon.com/Bundle-Algorithms-Parts-1-5-Fundamentals/dp/020172684X

It's 2 books, part 5 being graphs and is not as useful as the other book - unless of course, you want to use graphs to solve a problem. :)

link|flag
vote up 0 vote down

I've heard good things about "Introduction to algorithms, A creative approach - Udi Manber" I can't verify it though since it's not available locally :(

http://www.amazon.com/Introduction-Algorithms-Creative-Udi-Manber/dp/0201120372

link|flag

Your Answer

Get an OpenID
or

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