码迷,mamicode.com
首页 > 编程语言 > 详细

2021-4-1 C++ STL之unordered_map

时间:2021-04-02 13:12:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:插入   tor   begin   i++   value   lis   list   count   int   

unordered_map

unordered_map底层实现是哈希表,所以不会根据key来排序
undered_map<T1,T2> m;		//T1是key值,T2是value值,初始的时候 m 是空映射

插入方式:键值对的形式插入

 unordered_map<int, int> map;
        for (int i=0; i<list.size(); i++){
            map[i] = list[i];
        }
        cout << map[0] << endl;
        for (unordered_map<int, int>::iterator i = map.begin(); i != map.end(); i++){
            cout << i->first << ‘ ‘ << i->second << endl;
        }
        if (map.find(3) != map.end()) {
            cout << "find key=" << map.find(3)->first << ", value=" << map.find(3)->second << endl;
        }
        if (map.count(5) > 0) {
            cout << "find 5: " << map.count(5) << endl;
        }

2021-4-1 C++ STL之unordered_map

标签:插入   tor   begin   i++   value   lis   list   count   int   

原文地址:https://www.cnblogs.com/jobshenlei/p/14607780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!