【C++11散列表】
散列表对应于C++03中的hash_xxx,分为set和map两种
上述的类型将满足对一个容器类型的要求,同时也提供访问其中元素的成员函数: insert, erase, begin, end。
insert
erase
begin
end
散列表需引入<unordered_set> 和 <unordered_map> 两个头文件。
<unordered_set>
<unordered_map>
参考:http://zh.wikipedia.org/wiki/C++0x#.E9.9B.9C.E6.B9.8A.E8.A1.A8