首页 > 其他 > 详细

STL中的哈希表 hash table

时间:2015-11-28 15:02:15      阅读:329      评论:0      收藏:0      [点我收藏+]

哈希表在STL的map库中,用到的两个主要函数为map.count()和map.insert(),分别是查找和插入操作。代码样例如下:

1 include <map>
2 
3 map<int, int> hashtable;
4 if(!hashtable.count(key)) {
5     hashtable.insert(pair<int, int>(key, value));
6 }

插入的时间复杂度为O(1),查找的时间复杂度为O(1)。

STL中的哈希表 hash table

原文:http://www.cnblogs.com/QifanHu/p/5002568.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!