c_cpp 地图::找到();

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 地图::找到();相关的知识,希望对你有一定的参考价值。

// map::find
#include <iostream>
#include <map>
using namespace std;

int main() {
	map<char, int> map1;
	map<char, int>::iterator it;

	map1['a'] = 50;
	map1['b'] = 100;
	map1['c'] = 150;
	map1['d'] = 200;

	it = map1.find('b');
	if (it != map1.end()) {
		map1.erase(it);
	}

	// print content:
	cout << "a => " << map1.find('a')->second << endl;
	cout << "c => " << map1.find('c')->second << endl;
	cout << "d => " << map1.find('d')->second << endl;

	return 0;
}

以上是关于c_cpp 地图::找到();的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 地图::计数()

c_cpp 地图练习

c_cpp 地图中的对

c_cpp 地图语法

c_cpp 使用无序地图练习

c_cpp 打印中国地图