欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

unordered_map

程序员文章站 2022-05-12 23:33:29
...
#include <unordered_map>
#include <stdio.h>
#include <algorithm>
using namespace std;

int main()
{
	unordered_map<int,int> m;
	m.insert({1,3});
	m.insert({2,5});
	unordered_map<int,int>::iterator it;
	it=m.find(1);
	it->second++;
	m[1]++;
	printf("%d:%d",it->first,it->second);
	
	return 0;
}

 运行结果 1:5

 

相关标签: unordered_map STL