Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 STL 无序容器(如无序映射)中使用哪种迭代器 - 双向或随机访问?
所有四个当前的无序关联容器都在各自的描述中明确列出了它们的迭代器类别,例如 [unord.map.overview]/1
该类unordered_map支持前向迭代器。
unordered_map
所有四个都只支持前向迭代器,仅满足容器的最低要求。