码迷,mamicode.com
首页 > 其他好文 > 详细

#include <hash_set>

时间:2016-08-08 06:26:51      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

 

哈希查找,不需要排序,适用于精确查找,比二分查找更快

 

 1 #define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
 2 #include <iostream>
 3 #include <hash_set>
 4 
 5 int main()
 6 {
 7     std::hash_set<const char *>hs;//哈希
 8 
 9     hs.insert("china");
10     hs.insert("abc");
11 
12     auto pfind = hs.find("china");
13 
14     if (pfind == hs.end())
15     {
16         std::cout << "没有找到" << std::endl;
17     }
18     else
19     {
20         std::cout << *pfind << std::endl;
21     }
22 
23     return 0;
24 }

 

#include <hash_set>

标签:

原文地址:http://www.cnblogs.com/denggelin/p/5747881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!