标签: c++ stl hashmap
保证通过顺序迭代(根据定义的比较函数)。
例如,对于hash_map,从begin()到end()进行迭代时是否有保证顺序?
begin()
end()
答案 0 :(得分:3)
不,hash_map或标准等效std::unordered_map是无序容器。
hash_map
std::unordered_map