#include<iostream>
#include<cstring>
#include<string>
#include<tr1/unordered_map>//注意这里
using namespace std;
using namespace std::tr1;//还有这里
//即可使用
int main(){
unordered_map <string,int> hash;
hash["aa"]=100;
cout<<hash["aa"];
return 0;
}
相关文章
- 04-07devcpp中使用unordered_map
- 04-07C++ - STL中map和unordered_map区别
- 04-07[LeetCode]丑数 II&C++中priority_queue和unordered_set的使用
- 04-07map 使用(unordered_map 和 map)
- 04-07python中map()和reduce()的使用
- 04-07解决spring boot中普通类中使用service为null 的方法
- 04-07使用easyui实现双击列表中某个值直接对其进行修改
- 04-07【转载】JMeter使用中遇到的问题:Jmeter Debug - "Unrecognized VM option '+HeapDumpOnOutOfMemoryError&quo
- 04-07openedx使用中可能用到的一些资源
- 04-07c – 使用union(封装在结构中)绕过霓虹灯数据类型的转换