puddlejumper26 / blogs

Personal Tech Blogs
4 stars 1 forks source link

Abstract Data types - Multimap #115

Open puddlejumper26 opened 4 years ago

puddlejumper26 commented 4 years ago

In computer science, a multimap (sometimes also multihash or multidict) is a generalization of a map or associative array abstract data type in which more than one value may be associated with and returned for a given key. Both map and multimap are particular cases of containers (for example, see C++ Standard Template Library containers). Often the multimap is implemented as a map with lists or sets as the map values.

Examples

Reference

[1] https://en.wikipedia.org/wiki/Multimap