欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

浅谈c++ vector和map的遍历和删除对象

时间:2021-08-29 08:56:12|栏目:C代码|点击:

示例如下:

// Aa.cpp : Defines the entry point for the console application.

#include "stdafx.h"
#include <vector>
#include <map>
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{
printf("Hello World!\n");


vector<int> a; //创建一个对象
a.push_back(1);
a.push_back(2);
a.push_back(3);

vector<int>::iterator iter;

for( iter = a.begin(); iter != a.end(); ++iter ) //遍历和删除一个对象
{
if( (*iter) == 2 )
{
a.erase(iter);
printf("del is item;");
break;
}
}

vector<int>* b = new vector<int>();
b->push_back(1);
b->push_back(2);
b->push_back(3);

vector<int>::iterator iterr;

for( iterr = b->begin() ; iterr!= b->end() ; iterr++)//通过new 一个对象删除
{
if( (*iterr) == 2 )
{
b->erase(iterr);
printf("del is new item");
break;
}
}

map<int,int> mapTest;
mapTest[0] = 1;
mapTest[1] = 2;
mapTest[2] = 3;

map<int,int>::iterator mapIter;

for( mapIter = mapTest.begin() ; mapIter != mapTest.end() ; ++mapIter )
{
std::cout << mapIter->first<<"-----"<<mapIter->second<< std::endl;
}

system("pause");


return 0;
}

上一篇:C语言实现单词小助手功能完善版

栏    目:C代码

下一篇:C++实现LeetCode(47.全排列之二)

本文标题:浅谈c++ vector和map的遍历和删除对象

本文地址:http://www.codeinn.net/misctech/170695.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有