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

时间:2021-05-19

示例如下:

// 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++ vector和map的遍历和删除对象全部内容了,希望大家多多支持~

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章