C++ map遍历

C++ map遍历

#include 
#include 

using namespace std;

int main() {
    map<int, int> _map;
    _map[0] = 1;
    _map[1] = 2;
    _map[10] = 10;

    map<int, int>::iterator iter;
    iter = _map.begin();
    while(iter != _map.end()) {
        cout << iter->first << " : " << iter->second << endl;
        iter++;
    }

    // 也可以使用for循环遍历
    /*
    for(iter = _map.begin(); iter != _map.end(); iter++) {
        cout << iter->first << " : " << iter->second << endl;
    }
    */
    return 0;
}

程序的运行结果为:

C++ map遍历_第1张图片

注意:
如果使用for循环遍历map,不能写成 ‘<’ 的形式

C++ map遍历_第2张图片

C++ map遍历_第3张图片

你可能感兴趣的:(基础知识,面试题梳理)