mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-23 21:04:07 -06:00
461 B
461 B
| title | aliases | tags | ||
|---|---|---|---|---|
| hah-map | map, hash map, hash set |
|
In compsci a map is a comprised of a set of keys and values. (<K, V>). For example <String, Integer>
So sets are a prerequisite for maps
The fundamental map operations are:
Put(k, v)--> Add the this key-value pair to the map. If the present: update the keyGet(k)--> returns the value associated with `` is presentRemove(k)--> Removes the keyk