?
unordered_map和map的使用几乎是一致的,只是头文件和定义不同
#include<iostream>
#include<map>//使用map需要的头文件
#include<unordered_map>//使用unordered_map需要的头文件
#include<set>//使用set需要的头文件
#include<unordered_set>//使用unordered_set需要的头文件
using namespace std;
int main(){
map<int,int> m1;
unordered_map<int,int> m2;
set<int> s1;
unordered_set<int> s2;
}