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.
只要集合或映射未更改,迭代器是否会迭代boost::unordered_set或以相同的顺序迭代?boost::unordered_map
boost::unordered_set
boost::unordered_map
哈希映射的一些实现会将哈希到同一个 bin 的项目重新排序,将最近访问的项目放在列表的前面,作为优化。这将改变顺序。我不知道这样boost::unordered_map做,但是将来您可能最终std::unordered_map会替换它,这完全取决于您的编译器的实现。
std::unordered_map
它应该是确定性的,但只要它们是所谓的unordered,您就不应依赖它来迭代您的元素。