Add multimap

This commit is contained in:
Bailey Thompson
2017-12-31 22:37:20 -05:00
committed by GitHub
parent d5471f6f9f
commit a8cfa76db4

View File

@@ -16,7 +16,7 @@ Data structures that can be quickly searched which use comparators.
<p> set - collection of unique keys, sorted by keys
<p> map - collection of key-value pairs, sorted by keys, keys are unique
<p> multiset - collection of keys, sorted by keys
<p> multimap (todo) - collection of key-value pairs, sorted by keys
<p> multimap - collection of key-value pairs, sorted by keys
# Unordered associative containers
Data structures that can be quickly searched which use hashing.