Collection Classes
- slide 23 : 36
Dictionaries
A dictionary implements an associative array
Dictionaries
map keys to values
a given key can - at most - be mapped to a single value
are collections of key-value pairs
implement an efficient connection from instances of keys to instances of values
are typically implemented by means of hashtables
Associative arrays
Collection types