vote up 0 vote down star
1

Hi,

I am looking for Best book on data-structures in Java, I know there are few good books on Data structures but they are from C++ perspective and am looking from Java perspective.

Thanks.

flag

4 Answers

vote up 1 vote down check

For books, I will normally go to amazon and read recommendations by other people.

Data Structures and Algorithms in Java looks pretty good.

link|flag
vote up 0 vote down

My University used Lafore's book for reference to data structures in Java. I chose to use the C++ book myself, but my classmates seemed to have no complaints.

link|flag
vote up 0 vote down

I have Data Abstraction & Problem solving with Java: http://www.amazon.com/Data-Abstraction-Problem-Solving-Java/dp/0321304284

Great book, I can vouch for it. Used it in two semesters of Data Structures at my school. The book has plenty of examples and lots of code to get you going. As Far As I Can Remember, it covers up to Java 1.5 (I don't recall any 1.6 being in there) in it's usage and examples.

link|flag
vote up 0 vote down

I used Data Structures with Java, it covers the important stuff:

  1. Structures using generics
  2. Rolling out your own version of the Java Collection types
  3. Sorting algorithms
  4. Graphs, binary trees(search trees also), heaps...(No AVL or red black trees though)
  5. Graph algorithms

This is a very good starting point with some good exercises to maximize your effort

link|flag

Your Answer

Get an OpenID
or

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