A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.wikipedia.org/wiki/Multimap_(data_structure) below:

Multimap - Wikipedia

From Wikipedia, the free encyclopedia

In computer science, a multimap (sometimes also multihash, multidict or multidictionary) 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.

C++'s Standard Template Library provides the multimap container for the sorted multimap using a self-balancing binary search tree,[1] and SGI's STL extension provides the hash_multimap container, which implements a multimap using a hash table.[2]

As of C++11, the Standard Template Library provides the unordered_multimap for the unordered multimap.[3]

Quiver provides a Multimap for Dart.[4]

Apache Commons Collections provides a MultiMap interface for Java.[5] It also provides a MultiValueMap implementing class that makes a MultiMap out of a Map object and a type of Collection.[6]

Google Guava provides a Multimap interface and implementations of it.[7]

Kotlin does not have explicit support for multimaps,[8] but can implement them using Maps with containers[9] for the value type. E.g. a Map<User, List<Book>> can associate each User with a list of Books.

Python provides a collections.defaultdict class that can be used to create a multimap. The user can instantiate the class as collections.defaultdict(list).

OCaml's standard library module Hashtbl implements a hash table where it's possible to store multiple values for a key.

The Scala programming language's API also provides Multimap and implementations.[10]

  1. ^ "multimap<Key, Data, Compare, Alloc>". Standard Template Library Programmer's Guide. Silicon Graphics International.
  2. ^ "hash_multimap<Key, HashFcn, EqualKey, Alloc>". Standard Template Library Programmer's Guide. Silicon Graphics International.
  3. ^ "Working Draft, Standard for Programming Language C++" (PDF). p. 7807.
  4. ^ "Multimap". Quiver API docs.
  5. ^ "Interface MultiMap". Commons Collections 3.2.2 API, Apache Commons.
  6. ^ "Class MultiValueMap". Commons Collections 3.2.2 API, Apache Commons.
  7. ^ "Interface Multimap<K,V>". Guava Library 2.0. Archived from the original on 2013-01-15. Retrieved 2013-01-01.
  8. ^ "Implement a MultiMap in Kotlin | Baeldung on Kotlin". 5 December 2023.
  9. ^ "Accessing data using Room DAOs".
  10. ^ "Scala.collection.mutable.MultiMap". Scala stable API.

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4