mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-08 15:58:33 +00:00
Merge pull request #841 from gaykov/master
[Java] Added description of LinkedList, Map & HashMap.
This commit is contained in:
commit
70c67b8ee1
@ -123,9 +123,15 @@ public class LearnJava {
|
|||||||
// Others to check out
|
// Others to check out
|
||||||
// ArrayLists - Like arrays except more functionality is offered,
|
// ArrayLists - Like arrays except more functionality is offered,
|
||||||
// and the size is mutable
|
// and the size is mutable
|
||||||
// LinkedLists
|
// LinkedLists - Implementation of doubly-linked list. All of the
|
||||||
// Maps
|
// operations perform as could be expected for
|
||||||
// HashMaps
|
// a doubly-linked list.
|
||||||
|
// Maps - A set of objects that maps keys to values. A map cannot contain
|
||||||
|
// duplicate keys; each key can map to at most one value.
|
||||||
|
// HashMaps - This class uses a hashtable to implement the Map interface.
|
||||||
|
// This allows the execution time of basic operations,
|
||||||
|
// such as get and insert element, to remain constant even
|
||||||
|
// for large sets.
|
||||||
|
|
||||||
///////////////////////////////////////
|
///////////////////////////////////////
|
||||||
// Operators
|
// Operators
|
||||||
|
Loading…
Reference in New Issue
Block a user