240
笔下虽有千言,胸中实无一策

C++: STL std::multiset

Multiple-key set

Multisets are containers that store elements following a specific order, and where multiple elements can have equivalent values.

Compared with unordered_multiset

multiset containers are generally slower than unordered_multiset containers to access individual elements by their key, but they allow the direct iteration on subsets based on their order.

posted @ 2017-11-15 04:11  CasperWin  阅读(211)  评论(0编辑  收藏  举报