stl源码剖析 详细学习笔记 hashset hashmap
//---------------------------15/03/26----------------------------
//hash_set
{
/*
hash_set概述:
1:这是一个hash版本的set,RB_tree版本的set有自动排序功能,
而hash_set没有这个功能。
2:hash_set的使用方式,与set完全相同。
*/
//class
template<class Value,
class HashFcn = hash<Value>,
class EqualKey = equal_to<Value>,
class Alloc=alloc>
class hash_set
{
private:
typedef hashtable<Value, Value, HashFcn, identity<Value>,
EqualKey, Alloc> ht;
ht rep;
public:
typedef typename ht::key_type key_type;
typedef typename ht::value_type value_type;
typedef typename ht::hasher hasher;
//hashtable中: typedef HashFcn hasher
typedef typename ht::key_equel key_equel;
typedef typename ht::size_type size_type;
typedef typename ht::difference_type difference_type;
typedef typename ht::const_pointer pointer;
typedef typename ht::const_pointer const_pointer;
typedef typename ht::const_reference reference;
typedef typename ht::const_reference const_reference;
typedef typename ht::const_iterator iterator;
typedef typename ht::const_iterator const_iterator;
hasher hash_funct()
const {return rep.hash_funct(); }
key_equel key_eq()
const { return rep.key_eq(); }
public:
//各种构造函数 ,不给定大小的话默认值为100,实际上找到的质数为193
hash_set() : rep(,hasher(), key_equel()){}
explicit hash_set(size_type n) : rep(n, hasher(), key_equel()) {}
hash_set(size_type n,
const hasher& hf) : rep(n, hf, key_equel()) {}
hash_set(size_type n,
const hasher& hf,
const key_equel& eql)
: rep(n, hf, eql) {}
template< class InputIterator>
hash_set(InputIterator f, InputIterator l)
: rep(, hasher(), key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_set(InputIterator f, InputIterator l, size_type n)
: rep(n, hasher(), key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_set(InputIterator f, InputIterator l, size_type n,
const hasher& hf)
: rep(n, hf, key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_set(InputIterator f, InputIterator l, size_type n,
const hasher& hf
const key_equel& eql)
: rep(, hf, eql) { rep.insert_unique(f, l); }
public:
size_type size()
const {return rep.size();}
size_type max_size()
const { return rep.max_size(); }
bool empty() const {return rep.empty(); }
void swap(hash_set& hs) { rep.swap(hs.rep); }
friend bool
operator== __STL_NULL_TMPL_ARGS (const hash_set&,
const hash_set&);
iterator begin()
const { return rep.begin(); }
iterator end()
const { return rep.end(); }
public:
pair<iterator,
bool> insert(const value_type& obj)
{
pair<typename ht::iterator,
bool> p =rep.insert_unique(obj);
return pair<iterator,
bool>(p.first, p.second);
}
template<class InputIterator>
void insert(InputIterator f, InputIterator l) { rep.insert_unique(f,l); }
pair<iterator,
bool> insert_noresize(const value_type& obj)
{
pair<typename ht::iterator,
bool> p = rep.insert_unique_noresize(obj);
return pair<iterator,
bool>(p.first, p.second);
}
iterator find(const key_type& key)
const { return rep.find(key); }
size_type count(const key_type& key)
const {return rep.count(key); }
//相等的key的位置(是一个左闭右开的区间),由迭代器给出
pair<iterator, iterator> equal_range(const key_type& key)
const
{
return rep.equal_range(key); }
size_type erase(const key_type& key) {
return rep.erase(key); }
void erase(iterator it) { rep.erase(it); }
void erase(iterator f, iterator l) { rep.erase(f, l); }
void clear() { rep.clear(); }
public:
void resize(size_type hint) { rep.resize(hint); }
size_type bucket_count()
const { return rep.bucket_count(); }
size_type elems_in_bucket(size_type n)
const
{
return rep.elems_in_bucket(n); }
//class
template<class Value,
class HashFcn, class EqualKey,
class Alloc>
inline bool
operator==(const hash_set<Value, HashFcn, EqualKey, Alloc>& hs1,
const hash_set<Value, HashFcn, EqualKey, Alloc>& hs2)
{
return has1.rep == has2.rep;
}
};
}
//hash_map
{
/*
hash_map概述:
hash_map之于map就像hash_set之于set一样。
*/
//class
template<class Key,
class T, class HashFcn = hash<Value>,
class EqualKey = equal_to<Value>,
class Alloc=alloc>
class hash_map
{
private:
typedef hashtable<pair<const Key, T>, Key, HashFcn,
select1st<pair<const Key, T>, EqualKey, Alloc> ht;
ht rep;
public:
typedef typename ht::key_type key_type;
typedef T data_type;
typedef T mapped_type;
typedef typename ht::value_type value_type;
typedef typename ht::hasher hasher;
//hashtable中: typedef HashFcn hasher
typedef typename ht::key_equel key_equel;
typedef typename ht::size_type size_type;
typedef typename ht::difference_type difference_type;
typedef typename ht::pointer pointer;
typedef typename ht::const_pointer const_pointer;
typedef typename ht::reference reference;
typedef typename ht::const_reference const_reference;
typedef typename ht::iterator iterator;
typedef typename ht::const_iterator const_iterator;
hasher hash_funct()
const {return rep.hash_funct(); }
key_equel key_eq()
const { return rep.key_eq(); }
public:
//各种构造函数 ,不给定大小的话默认值为100,实际上找到的质数为193
hash_map() : rep(, hasher(), key_equel()){}
explicit hash_map(size_type n) : rep(n, hasher(), key_equel()) {}
hash_map(size_type n,
const hasher& hf) : rep(n, hf, key_equel()) {}
hash_map(size_type n,
const hasher& hf,
const key_equel& eql)
: rep(n, hf, eql) {}
template< class InputIterator>
hash_map(InputIterator f, InputIterator l)
: rep(, hasher(), key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_map(InputIterator f, InputIterator l, size_type n)
: rep(n, hasher(), key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_map(InputIterator f, InputIterator l, size_type n,
const hasher& hf)
: rep(n, hf, key_equel()) { rep.insert_unique(f, l); }
template< class InputIterator>
hash_map(InputIterator f, InputIterator l, size_type n,
const hasher& hf
const key_equel& eql)
: rep(, hf, eql) { rep.insert_unique(f, l); }
public:
size_type size()
const {return rep.size();}
size_type max_size()
const { return rep.max_size(); }
bool empty() const {return rep.empty(); }
void swap(hash_map& hs) { rep.swap(hs.rep); }
friend bool
operator== __STL_NULL_TMPL_ARGS (const hash_map&,
const hash_map&);
iterator begin()
const { return rep.begin(); }
iterator end()
const { return rep.end(); }
public:
pair<iterator,
bool> insert(const value_type& obj)
{
//之前在set中就想过
为什么不直接返回 在map中看到时直接返回了,
//不是像set中一样还要先申请一个临时变量
再返回临时变量
//经过一番努力,发现:set的iterator是const_iterator,因为set不能更改值嘛
//所以需要进行转化,所以set那里会复杂一些
return rep.insert_unique(obj);
}
template<class InputIterator>
void insert(InputIterator f, InputIterator l) { rep.insert_unique(f,l); }
pair<iterator,
bool> insert_noresize(const value_type& obj)
{
return rep.insert_unique_noresize(obj);
}
iterator find(const key_type& key)
const { return rep.find(key); }
const_iterator find(const key_type& key)
const { return rep.find(key);}
T&
operator[](const key_type& key)
{
return rep.find_or_insert(value_type(key, T())).second;
}
size_type count(const key_type& key)
const {return rep.count(key); }
//相等的key的位置(是一个左闭右开的区间),由迭代器给出
pair<iterator, iterator> equal_range(const key_type& key)
const
{
return rep.equal_range(key); }
size_type erase(const key_type& key) {
return rep.erase(key); }
void erase(iterator it) { rep.erase(it); }
void erase(iterator f, iterator l) { rep.erase(f, l); }
void clear() { rep.clear(); }
public:
void resize(size_type hint) { rep.resize(hint); }
size_type bucket_count()
const { return rep.bucket_count(); }
size_type elems_in_bucket(size_type n)
const
{
return rep.elems_in_bucket(n); }
//class
template<class Value,
class HashFcn, class EqualKey,
class Alloc>
inline bool
operator==(const hash_map<Value, HashFcn, EqualKey, Alloc>& hm1,
const hash_map<Value, HashFcn, EqualKey, Alloc>& hm2)
{
return has1.rep == has2.rep;
}
};
}
//hash_multiset
{
/*
hash_multiset概述:
同上
*/
//class
template<class Value,
class HashFcn = hash<Value>,
class EqualKey = equal_to<Value>,
class Alloc=alloc>
class hash_multiset
{
private:
typedef hash_multiset<Value, Value, HashFcn, identity<Value>,
EqualKey, Alloc> ht;
ht rep;
public:
typedef typename ht::key_type key_type;
typedef typename ht::value_type value_type;
typedef typename ht::hasher hasher;
//hashtable中: typedef HashFcn hasher
typedef typename ht::key_equel key_equel;
typedef typename ht::size_type size_type;
typedef typename ht::difference_type difference_type;
typedef typename ht::const_pointer pointer;
typedef typename ht::const_pointer const_pointer;
typedef typename ht::const_reference reference;
typedef typename ht::const_reference const_reference;
typedef typename ht::const_iterator iterator;
typedef typename ht::const_iterator const_iterator;
hasher hash_funct()
const {return rep.hash_funct(); }
key_equel key_eq()
const { return rep.key_eq(); }
public:
//各种构造函数 ,不给定大小的话默认值为100,实际上找到的质数为193
hash_multiset() : rep(100,hasher(), key_equel()){}
explicit hash_multiset(size_type n) : rep(n, hasher(), key_equel()) {}
hash_multiset(size_type n,
const hasher& hf) : rep(n, hf, key_equel()) {}
hash_multiset(size_type n,
const hasher& hf,
const key_equel& eql)
: rep(n, hf, eql) {}
template< class InputIterator>
hash_multiset(InputIterator f, InputIterator l)
: rep(, hasher(), key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multiset(InputIterator f, InputIterator l, size_type n)
: rep(n, hasher(), key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multiset(InputIterator f, InputIterator l, size_type n,
const hasher& hf)
: rep(n, hf, key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multiset(InputIterator f, InputIterator l, size_type n,
const hasher& hf
const key_equel& eql)
: rep(, hf, eql) { rep.insert_equal(f, l); }
public:
size_type size()
const {return rep.size();}
size_type max_size()
const { return rep.max_size(); }
bool empty() const {return rep.empty(); }
void swap(hash_multiset& hs) { rep.swap(hs.rep); }
friend bool
operator== __STL_NULL_TMPL_ARGS (const hash_multiset&,
const hash_multiset&);
iterator begin()
const { return rep.begin(); }
iterator end()
const { return rep.end(); }
public:
iterator insert(const value_type& obj)
{
return rep.insert_equal(obj);
}
template<class InputIterator>
void insert(InputIterator f, InputIterator l) { rep.insert_equal(f,l); }
iterator insert_noresize(const value_type& obj)
{
return rep.insert_equal_noresize(obj);
}
iterator find(const key_type& key)
const { return rep.find(key); }
size_type count(const key_type& key)
const {return rep.count(key); }
//相等的key的位置(是一个左闭右开的区间),由迭代器给出
pair<iterator, iterator> equal_range(const key_type& key)
const
{
return rep.equal_range(key); }
size_type erase(const key_type& key) {
return rep.erase(key); }
void erase(iterator it) { rep.erase(it); }
void erase(iterator f, iterator l) { rep.erase(f, l); }
void clear() { rep.clear(); }
public:
void resize(size_type hint) { rep.resize(hint); }
size_type bucket_count()
const { return rep.bucket_count(); }
size_type elems_in_bucket(size_type n)
const
{
return rep.elems_in_bucket(n); }
//class
template<class Value,
class HashFcn, class EqualKey,
class Alloc>
inline bool
operator==(const hash_multiset<Value, HashFcn, EqualKey, Alloc>& hs1,
const hash_multiset<Value, HashFcn, EqualKey, Alloc>& hs2)
{
return has1.rep == has2.rep;
}
};
}
//hash_multimap
{
/*
hash_multimap概述:
同上
*/
//class
template<class Key,
class T, class HashFcn = hash<Value>,
class EqualKey = equal_to<Value>,
class Alloc=alloc>
class hash_multimap
{
private:
typedef hashtable<pair<const Key, T>, Key, HashFcn,
select1st<pair<const Key, T>, EqualKey, Alloc> ht;
ht rep;
public:
typedef typename ht::key_type key_type;
typedef T data_type;
typedef T mapped_type;
typedef typename ht::value_type value_type;
typedef typename ht::hasher hasher;
//hashtable中: typedef HashFcn hasher
typedef typename ht::key_equel key_equel;
typedef typename ht::size_type size_type;
typedef typename ht::difference_type difference_type;
typedef typename ht::pointer pointer;
typedef typename ht::const_pointer const_pointer;
typedef typename ht::reference reference;
typedef typename ht::const_reference const_reference;
typedef typename ht::iterator iterator;
typedef typename ht::const_iterator const_iterator;
hasher hash_funct()
const {return rep.hash_funct(); }
key_equel key_eq()
const { return rep.key_eq(); }
public:
//各种构造函数 ,不给定大小的话默认值为100,实际上找到的质数为193
hash_multimap() : rep(, hasher(), key_equel()){}
explicit hash_multimap(size_type n) : rep(n, hasher(), key_equel()) {}
hash_multimap(size_type n,
const hasher& hf) : rep(n, hf, key_equel()) {}
hash_multimap(size_type n,
const hasher& hf,
const key_equel& eql)
: rep(n, hf, eql) {}
template< class InputIterator>
hash_multimap(InputIterator f, InputIterator l)
: rep(, hasher(), key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multimap(InputIterator f, InputIterator l, size_type n)
: rep(n, hasher(), key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multimap(InputIterator f, InputIterator l, size_type n,
const hasher& hf)
: rep(n, hf, key_equel()) { rep.insert_equal(f, l); }
template< class InputIterator>
hash_multimap(InputIterator f, InputIterator l, size_type n,
const hasher& hf
const key_equel& eql)
: rep(, hf, eql) { rep.insert_equal(f, l); }
public:
size_type size()
const {return rep.size();}
size_type max_size()
const { return rep.max_size(); }
bool empty() const {return rep.empty(); }
void swap(hash_multimap& hs) { rep.swap(hs.rep); }
friend bool
operator== __STL_NULL_TMPL_ARGS (const hash_multimap&,
const hash_multimap&);
iterator begin()
const { return rep.begin(); }
iterator end()
const { return rep.end(); }
public:
iterator insert(const value_type& obj)
{
return rep.insert_equal(obj);
}
template<class InputIterator>
void insert(InputIterator f, InputIterator l) { rep.insert_equal(f,l); }
iterator insert_noresize(const value_type& obj)
{
return rep.insert_equal_noresize(obj);
}
iterator find(const key_type& key)
const { return rep.find(key); }
const_iterator find(const key_type& key)
const { return rep.find(key);}
size_type count(const key_type& key)
const {return rep.count(key); }
//相等的key的位置(是一个左闭右开的区间),由迭代器给出
pair<iterator, iterator> equal_range(const key_type& key)
const
{
return rep.equal_range(key); }
size_type erase(const key_type& key) {
return rep.erase(key); }
void erase(iterator it) { rep.erase(it); }
void erase(iterator f, iterator l) { rep.erase(f, l); }
void clear() { rep.clear(); }
public:
void resize(size_type hint) { rep.resize(hint); }
size_type bucket_count()
const { return rep.bucket_count(); }
size_type elems_in_bucket(size_type n)
const
{
return rep.elems_in_bucket(n); }
//class
template<class Value,
class HashFcn, class EqualKey,
class Alloc>
inline bool
operator==(const hash_multimap<Value, HashFcn, EqualKey, Alloc>& hm1,
const hash_multimap<Value, HashFcn, EqualKey, Alloc>& hm2)
{
return has1.rep == has2.rep;
}
};
}
stl源码剖析 详细学习笔记 hashset hashmap的更多相关文章
- stl源码剖析 详细学习笔记 hashtable
//---------------------------15/03/24---------------------------- //hashtable { /* 概述: sgi采用的是开链法完成h ...
- stl源码剖析 详细学习笔记 set map
// // set map.cpp // 笔记 // // Created by fam on 15/3/23. // // //---------------------------15/03 ...
- stl源码剖析 详细学习笔记 RB_tree (1)
// // RB_tree_STL.cpp // 笔记 // // Created by fam on 15/3/21. // // #include "RB_tree_STL.h&q ...
- stl源码剖析 详细学习笔记heap
// // heap.cpp // 笔记 // // Created by fam on 15/3/15. // // //---------------------------15/03/15 ...
- stl源码剖析 详细学习笔记 空间配置器
//---------------------------15/04/05---------------------------- /* 空间配置器概述: 1:new操作包含两个阶段操作 1>调 ...
- stl源码剖析 详细学习笔记 算法(1)
//---------------------------15/03/27---------------------------- //算法 { /* 质变算法:会改变操作对象之值 所有的stl算法都 ...
- stl源码剖析 详细学习笔记 算法总览
//****************************基本算法***************************** /* stl算法总览,不在stl标准规格的sgi专属算法,都以 *加以标 ...
- stl源码剖析 详细学习笔记 RB_tree (2)
//---------------------------15/03/22---------------------------- //一直好奇KeyOfValue是什么,查了下就是一个和仿函数差不多 ...
- stl源码剖析 详细学习笔记priority_queue slist
// // priority_queue.cpp // 笔记 // // Created by fam on 15/3/16. // // //------------------------- ...
随机推荐
- css+div页面布局
div标签是html页面中用于分组的块元素,是专门用于元素布局的标签. 标签的级别: 1.行级标签:可设置大小,但一行只能容下一个行级标签(默认宽度==页面宽度,默认高度==填充高度) 2.块级标签: ...
- 转:stack
数据结构C#版笔记--堆栈(Stack) 堆栈(Stack)最明显的特征就是“先进后出”,本质上讲堆栈也是一种线性结构,符合线性结构的基本特点:即每个节点有且只有一个前驱节点和一个后续节点. 相对 ...
- python基础学习13----生成器&迭代器
生成器是属于迭代器,但迭代器不只是生成器 首先是一个简单的生成器 def gener(): print(1) yield 1 print(2) yield 2 print(3) yield 3 g=g ...
- python web编程CGI
CGI(通用网关接口),CGI 是Web 服务器运行时外部程序的规范,按CGI 编写的程序可以扩展服务器功能. CGI 应用程序能与浏览器进行交互,还可通过数据库API 与数据库服务器等外部数据源进行 ...
- Linux启动一个服务后,服务的某个文件所在的目录下出现类似:systemd-private.xxxxxx的目录
Linux的目录下面形如: [root@:vg_adn_tidbCkhsTest:172.31.17.203 /var/lib/mysql]#ll /tmp total drwxr root root ...
- Local policy - User rights assignment 对照表
"SeCreateTokenPrivilege" --> "Create a token object" "SeAssignPrimaryTo ...
- 2019 Web开发学习路线图
以下 Web 开发人员学习路线图是来自 Github developer-roadmap 项目,目前已经有繁体版翻译 developer-roadmap-chinese. 主要有三个方向,分别为前端开 ...
- Angular2学习笔记(1)——Hello World
1. 写在前面 之前基于Electron写过一个Markdown编辑器.就其功能而言,主要功能已经实现,一些小的不影响使用的功能由于时间关系还没有完成:但就代码而言,之前主要使用的是jQuery,由于 ...
- bower包管理工具
安装: npm install bower -g (全局安装) 验证: bower --version 指令( 以vue为例 ): 1. bower info vue 查看 ...
- Netty入门(十)解码分隔符和基于长度的协议
我们需要区分不同帧的首尾,通常需要在结尾设定特定分隔符或者在首部添加长度字段,分别称为分隔符协议和基于长度的协议,本节讲解 Netty 如何解码这些协议. 一.分隔符协议 Netty 附带的解码器可以 ...