Im looking for books or a site explaning data structures in full, my main aim at this time is to understand Maps in java.
Data structures
Page 1 of 15 Replies - 706 Views - Last Post: 16 January 2011 - 05:48 AM
Replies To: Data structures
#4
Re: Data structures
Posted 15 January 2011 - 12:44 PM
no im reading through this document and it doesnt have realy what i need, i'm planning to educate school users on data structures peferably maps, however i need much easier way to break it down.
#5
Re: Data structures
Posted 15 January 2011 - 01:55 PM
Since this is a Java question, I'll move this there.
Are you familiar with relational databases? I think a relational database table is a good description of a Map. It relates an identifying key (in a database table, this is called the Primary Key) to a Value (or the entity being modeled). So with a Map, it is generic with Map<Key, Value> types. The Map interface, like a database table, cannot have duplicate keys but it can have duplicate values.
We don't have any Map tutorials, but we do have some Map snippets linked to in the Java Data Structures Resource Thread.
Are you familiar with relational databases? I think a relational database table is a good description of a Map. It relates an identifying key (in a database table, this is called the Primary Key) to a Value (or the entity being modeled). So with a Map, it is generic with Map<Key, Value> types. The Map interface, like a database table, cannot have duplicate keys but it can have duplicate values.
We don't have any Map tutorials, but we do have some Map snippets linked to in the Java Data Structures Resource Thread.
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote







|