标签: c++ dictionary std stdmap c++-standard-library
有没有办法轻松找到一个迭代器,其中一个元素将插入std::map,而不实际插入元素?
std::map
答案 0 :(得分:4)
你能做的最好的就是:
std::map::upper_bound() 或 的 std::map::lower_bound() 强> 获取key大于或大于或等于特定键值的迭代器位置。