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