//---------------------------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的更多相关文章

  1. stl源码剖析 详细学习笔记 hashtable

    //---------------------------15/03/24---------------------------- //hashtable { /* 概述: sgi采用的是开链法完成h ...

  2. stl源码剖析 详细学习笔记 set map

    // //  set map.cpp //  笔记 // //  Created by fam on 15/3/23. // // //---------------------------15/03 ...

  3. stl源码剖析 详细学习笔记 RB_tree (1)

    // //  RB_tree_STL.cpp //  笔记 // //  Created by fam on 15/3/21. // // #include "RB_tree_STL.h&q ...

  4. stl源码剖析 详细学习笔记heap

    // //  heap.cpp //  笔记 // //  Created by fam on 15/3/15. // // //---------------------------15/03/15 ...

  5. stl源码剖析 详细学习笔记 空间配置器

    //---------------------------15/04/05---------------------------- /* 空间配置器概述: 1:new操作包含两个阶段操作 1>调 ...

  6. stl源码剖析 详细学习笔记 算法(1)

    //---------------------------15/03/27---------------------------- //算法 { /* 质变算法:会改变操作对象之值 所有的stl算法都 ...

  7. stl源码剖析 详细学习笔记 算法总览

    //****************************基本算法***************************** /* stl算法总览,不在stl标准规格的sgi专属算法,都以 *加以标 ...

  8. stl源码剖析 详细学习笔记 RB_tree (2)

    //---------------------------15/03/22---------------------------- //一直好奇KeyOfValue是什么,查了下就是一个和仿函数差不多 ...

  9. stl源码剖析 详细学习笔记priority_queue slist

    // //  priority_queue.cpp //  笔记 // //  Created by fam on 15/3/16. // // //------------------------- ...

随机推荐

  1. python基础知识回顾之列表

    在python 中,主要的常用数据类型有列表,元组,字典,集合,字符串.对于这些基础知识,应该要能够足够熟练掌握. 如何创建列表: # 创建一个空列表:定义一个变量,然后在等号右边放一个中括号,就创建 ...

  2. Google搜索引擎

    一.基本搜索 逻辑符 与(空格).或(OR).非(-). ""全匹配搜索 加入双引号表示完全匹配搜索 *通配符 二.高级搜索 intitle:只搜索网页标题(即html的title ...

  3. python的学习之路day2

    1.什么是常量: 常量在程序中是不变的量 但是在python中所有的变量都可以改 注意:为了防止区分错误,所以python中常量使用大写命名 例如: MYSQL_CONNECTION = '192.1 ...

  4. tidb导入大量数据报错:statement count 5001 exceeds the transaction limitation, autocommit = false

    这是Tidb数据库事务提交数量达到上限的一种报错:因为tidb是分布式的数据库,tikv使用了底层的强一致性协议.这是分布式数据库必然遇到的一个问题,我们可以调整这个值:在tidb的配置文件里面“st ...

  5. 安装Tidb数据库出现SSD硬盘IOPS不到40000的错误

    今天安装tidb数据库出现IOPS过低的问题,这里如果仅仅是测试的话我们可以降低这个值,大概遇到的问题是: 解决方法: 1.我们在中控机的目录下修改某个配置文件: [tidb@:vg_adn_tidb ...

  6. volatile和synchronized的区别与联系[转]

    volatile是一个变量修饰符,而synchronized是一个方法或块的修饰符.所以我们使用这两种关键字来指定三种简单的存取变量的方式. int i1;                       ...

  7. React阻止事件冒泡的正确打开方式

    需求:点击导航list按钮出现侧弹框,点击空白处弹框消失 问题:绑定空白处的点击事件到document上,但是非空白处的点击也会触发这个点击事件,在react中如何阻止事件冒泡? 解决方法:e.sto ...

  8. mysql 压缩备份 压缩还原 命令

    .mysqldump 备份并压缩sql文件 mysql>mysqldump -h主机ip -u用户名 -p密码(也可不输入) 数据库名 | gzip > 压缩后文件位置 .mysql直接用 ...

  9. centos 7 安装jira 破解

    http://blog.csdn.net/itjinglun/article/details/52240479

  10. Publisher和Subscriber节点

    一.Publisher节点 /*"ros/ros.h"里面包含了ROS系统内最常用的一些头文件,包含此文件,便可以使用ROS的核心功能.*/#include "ros/r ...