C++ unordered_set查找元素(find查找元素)详解
原地址:http://c.biancheng.net/view/549.html调用 unordered_set 的 find() 会返回一个迭代器。这个迭代器指向和参数哈希值匹配的元素,如果没有匹配的元素,会返回这个容器的结束迭代器。例如:std::pair<string, string> person {"John", "Smith"}; if(names.fi...