Collection - Map (Associative arrays|Dictionary)
Table of Contents
1 - About
A map is an object that maps keys to values (known as property)
Also known as:
- associative memories” or “associative arrays”
- dictionary
A map cannot contain duplicate keys; each key can map to at most one value.
A map holds a set of key/ value pairs and provides constant-time operations to store, retrieve, or test for an item in the set.
2 - Articles Related
3 - Implementation
- LinkedHashMap
- TreeMap