1 for循环遍历std::map删除指定元素
1.1 第一种方式
#include <iostream>
#include <map>
#include <string>
void PrintMap(const std::map<int, std::string>& in_map)
{
std::map<int, std::string>::const_iterator iter;
for (iter = in_map.begin(); iter != in_map.end(); iter++)
{
std::cout << iter->first << " " << iter->second << std::endl;
}
}
int main()
{
std::map<int, std::string> tempMap;
for (int i = 0; i < 20; ++i)
{
tempMap.insert(std::make_pair(i, std::to_string(i)));
}
// 删除元素
std::map<int, std::string>::iterator iter;
for (iter = tempMap.begin(); iter != tempMap.end(); )
{
if (iter->first == 5 || iter->first ==19)
{
iter = tempMap.erase(iter);
}
else
{
++iter;
}
}
PrintMap(tempMap);
}
1.2 第二种方式
#include <iostream>
#include <map>
#include <string>
void PrintMap(const std::map<int, std::string>& in_map)
{
std::map<int, std::string>::const_iterator iter;
for (iter = in_map.begin(); iter != in_map.end(); iter++)
{
std::cout << iter->first << " " << iter->second << std::endl;
}
}
int main()
{
std::map<int, std::string> tempMap;
for (int i = 0; i < 20; ++i)
{
tempMap.insert(std::make_pair(i, std::to_string(i)));
}
// 删除元素
std::map<int, std::string>::iterator iter;
for (iter = tempMap.begin(); iter != tempMap.end(); )
{
if (iter->first == 5 || iter->first == 19)
{
tempMap.erase(iter++);
}
else
{
++iter;
}
}
PrintMap(tempMap);
}
2 while循环遍历std::map删除指定元素
2.1 第一种方式
#include <iostream>
#include <map>
#include <string>
void PrintMap(const std::map<int, std::string>& in_map)
{
std::map<int, std::string>::const_iterator iter;
for (iter = in_map.begin(); iter != in_map.end(); iter++)
{
std::cout << iter->first << " " << iter->second << std::endl;
}
}
int main()
{
std::map<int, std::string> tempMap;
for (int i = 0; i < 20; ++i)
{
tempMap.insert(std::make_pair(i, std::to_string(i)));
}
// 删除元素
std::map<int, std::string>::iterator iter = tempMap.begin();
while (iter != tempMap.end())
{
if (iter->first == 5 || iter->first == 6)
{
iter = tempMap.erase(iter);
}
else
{
iter++;
}
}
PrintMap(tempMap);
}
2.2 第二种方式
#include <iostream>
#include <map>
#include <string>
void PrintMap(const std::map<int, std::string>& in_map)
{
std::map<int, std::string>::const_iterator iter;
for (iter = in_map.begin(); iter != in_map.end(); iter++)
{
std::cout << iter->first << " " << iter->second << std::endl;
}
}
int main()
{
std::map<int, std::string> tempMap;
for (int i = 0; i < 20; ++i)
{
tempMap.insert(std::make_pair(i, std::to_string(i)));
}
// 删除元素
std::map<int, std::string>::iterator iter = tempMap.begin();
while (iter != tempMap.end())
{
if (iter->first == 5 || iter->first == 6)
{
tempMap.erase(iter++);
}
else
{
iter++;
}
}
PrintMap(tempMap);
}
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:C++STL容器 – std::map删除指定元素
原文链接:https://www.stubbornhuang.com/1985/
发布于:2022年02月25日 16:42:43
修改于:2023年06月26日 20:35:11
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50