656 B
656 B
Multiset
2022-06-12
Data structures:
#DS #multiset
Difficulty:
#CS_analysis #difficulty-easy
Related problems:
tag:#coding_problem tag:#multiset -tag:#template_remove_me
Links:
What is Multiset?
std::multiset
is an associative container that contains a sorted set of objects of type Key. Unlike set, multiple keys with equivalent values are allowed. Sorting is done using the key comparison function Compare. Search, insertion, and removal operations have logarithmic complexity.