map #include<map> unordered_map #include<unordered_map>
map 是会自动排序的,基于红黑树建立的,耗时,耗空间 unordered_map 不会自动排序,是基于hash建立的,混乱,不耗时,不耗空间