0

マップ内の2つのキー値の間に発生するキーの数をどのように見つけることができますか?イテレータを使用してこれを実現する方法はありますか?

4

1 に答える 1

1

マップといくつかのSTLアルゴリズムを見てください:

http://www.cplusplus.com/reference/stl/map/
    lower_bound Return iterator to lower bound (public member function)
    upper_bound Return iterator to upper bound (public member function) 
    distance Calculates the number of elements between first and last.
于 2012-11-04T04:55:34.253 に答える