From a8cfa76db423bac271a282ef27f95aa2e8a14955 Mon Sep 17 00:00:00 2001 From: Bailey Thompson Date: Sun, 31 Dec 2017 22:37:20 -0500 Subject: [PATCH] Add multimap --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44de1b2..e2da353 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Data structures that can be quickly searched which use comparators.

set - collection of unique keys, sorted by keys

map - collection of key-value pairs, sorted by keys, keys are unique

multiset - collection of keys, sorted by keys -

multimap (todo) - collection of key-value pairs, sorted by keys +

multimap - collection of key-value pairs, sorted by keys # Unordered associative containers Data structures that can be quickly searched which use hashing.