码迷,mamicode.com
首页 > 其他好文 > 详细

map insert()两种用法

时间:2017-04-20 10:41:53      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:end   math   second   air   cpp   return   insert   fail   names   

#include <cstdlib>
#include <iostream>
#include <map>
#include <utility>
using namespace std;
int main(int argc, char *argv[])
{
    map<int, int> m;
    
    typedef map<int, int>::value_type vt;
    
    for(int i=0; i<50; i++)
    {
        int val = rand() % 1000;
        pair<map<int, int>::iterator, bool> ret;
        
        //1th insert mathod
        ret = m.insert(vt(val, i));
        if(!ret.second)
            cout << "insert key: " << val << "failed" << endl;
              
        //2th insert mathod
        val = rand() % 1000;
        ret = m.insert(make_pair(val, i));
        if(!ret.second)
            cout << "insert key: " << val << "failed" << endl;
    }
    
    map<int, int>::iterator it = m.begin();
    for(it; it != m.end(); it++)
        cout << it->first << " ";
    cout << endl;
        
    system("PAUSE");
    return EXIT_SUCCESS;
}

map insert()两种用法

标签:end   math   second   air   cpp   return   insert   fail   names   

原文地址:http://www.cnblogs.com/wgwyanfs/p/6736914.html

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