vector, list, map在遍历时删除符合条件的元素实现方法
来源:本站原创|时间:2020-01-10|栏目:C语言|点击: 次
直接看源码,内有详细解释
/* 测试vector, list, map遍历时删除符合条件的元素 本代码测试环境: ubuntu12 + win7_x64 */ #include <iostream> #include <vector> #include <list> #include <map> #include <iterator> using namespace std; void Remove1(vector<int> &vec, int num) { for (vector<int>::iterator it = vec.begin(); it != vec.end();) { if (*it == num) it = vec.erase(it); else it++; } } void Remove2(list<int> &lst, int num) { list<int>::iterator it; for (it=lst.begin(); it!=lst.end();) { if (*it == num) { lst.erase(it++); } else it++; } } void initMap(map<int, int>& m, int arr[], int arrLen) { for(int i = 0; i < arrLen; i++) m[i] = arr[i]; } void Remove_map(map<int, int>& m, int num) { map<int, int>::iterator it; for(it = m.begin(); it != m.end();) { if (it->second == num) m.erase(it++); else it++; } } void displayMap(map<int, int>& m) { map<int, int>::iterator it = m.begin(); while(it != m.end()) { cout << "key = " << it->first << ", value = " << it->second << endl; it++; } cout << endl; } int main(void) { int arr[] = {1, 3, 5, 5, 5, 13, 7, 5, 7, 9}; int arrLen = sizeof(arr) / sizeof(arr[0]); #if 1 // test vector vector<int> vec(arr, arr+arrLen); Remove1(vec, 5); copy(vec.begin(), vec.end(), ostream_iterator<int>(cout, " ")); cout << endl << endl; #endif // test list list<int> lst(arr, arr+arrLen); Remove2(lst, 5); copy(lst.begin(), lst.end(), ostream_iterator<int>(cout, " ")); cout << endl << endl; // test map map<int, int> m; initMap(m, arr, arrLen); Remove_map(m, 5); displayMap(m); return 0; } /* Win7_x64运行结果: 1 3 13 7 7 9 1 3 13 7 7 9 key = 0, value = 1 key = 1, value = 3 key = 5, value = 13 key = 6, value = 7 key = 8, value = 7 key = 9, value = 9 Ubuntu12运行结果: [zcm@cpp #54]$make g++ -Wall -Os -DLINUX -o a a.cpp [zcm@cpp #55]$./a 1 3 13 7 7 9 1 3 13 7 7 9 key = 0, value = 1 key = 1, value = 3 key = 5, value = 13 key = 6, value = 7 key = 8, value = 7 key = 9, value = 9 */
以上就是小编为大家带来的小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧全部内容了,希望大家多多支持我们~
栏 目:C语言
本文标题:vector, list, map在遍历时删除符合条件的元素实现方法
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/1896.html
您可能感兴趣的文章
- 01-10异步http listener 完全并发处理惩罚http恳求的小例子
- 01-10基于C++ list中erase与remove函数的使用详解
- 01-10使用map实现单词转换的实例分析
- 01-10海量数据处理系列之:用C++实现Bitmap算法
- 01-10求素数,用vector存储的实现方法
- 01-10解析bitmap处理海量数据及其实现方法分析
- 01-10va_list(),va_start(),va_arg(),va_end() 详细解析
- 01-10map插入自定义对象总结
- 01-10STL list链表的用法详细解析
- 01-10关于STL中vector容器的一些总结
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 04-02jquery与jsp,用jquery
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置