如何在不实际插入的情况下找到元素插入std :: map的位置

时间:2012-02-14 07:21:40

标签: c++ dictionary std stdmap c++-standard-library

有没有办法轻松找到一个迭代器,其中一个元素将插入std::map,而不实际插入元素?

1 个答案:

答案 0 :(得分:4)

你能做的最好的就是:

std::map::upper_bound()
std::map::lower_bound()
获取key大于或大于或等于特定键值的迭代器位置。