亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? stl_hash_map.h

?? The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterat
?? H
?? 第 1 頁 / 共 2 頁
字號:
class hash_multimap{private:  typedef hashtable<pair<const _Key, _Tp>, _Key, _HashFcn,                    _Select1st<pair<const _Key, _Tp> >, _EqualKey, _Alloc>           _Ht;  _Ht _M_ht;public:  typedef typename _Ht::key_type key_type;  typedef _Tp data_type;  typedef _Tp mapped_type;  typedef typename _Ht::value_type value_type;  typedef typename _Ht::hasher hasher;  typedef typename _Ht::key_equal key_equal;  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;  typedef typename _Ht::allocator_type allocator_type;  hasher hash_funct() const { return _M_ht.hash_funct(); }  key_equal key_eq() const { return _M_ht.key_eq(); }  allocator_type get_allocator() const { return _M_ht.get_allocator(); }public:  hash_multimap() : _M_ht(100, hasher(), key_equal(), allocator_type()) {}  explicit hash_multimap(size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}  hash_multimap(size_type __n, const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type()) {}  hash_multimap(size_type __n, const hasher& __hf, const key_equal& __eql,                const allocator_type& __a = allocator_type())    : _M_ht(__n, __hf, __eql, __a) {}#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  hash_multimap(_InputIterator __f, _InputIterator __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  template <class _InputIterator>  hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  template <class _InputIterator>  hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,                const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  template <class _InputIterator>  hash_multimap(_InputIterator __f, _InputIterator __l, size_type __n,                const hasher& __hf, const key_equal& __eql,                const allocator_type& __a = allocator_type())    : _M_ht(__n, __hf, __eql, __a)    { _M_ht.insert_equal(__f, __l); }#else  hash_multimap(const value_type* __f, const value_type* __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const value_type* __f, const value_type* __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const value_type* __f, const value_type* __l, size_type __n,                const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const value_type* __f, const value_type* __l, size_type __n,                const hasher& __hf, const key_equal& __eql,                const allocator_type& __a = allocator_type())    : _M_ht(__n, __hf, __eql, __a)    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const_iterator __f, const_iterator __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const_iterator __f, const_iterator __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const_iterator __f, const_iterator __l, size_type __n,                const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type())    { _M_ht.insert_equal(__f, __l); }  hash_multimap(const_iterator __f, const_iterator __l, size_type __n,                const hasher& __hf, const key_equal& __eql,                const allocator_type& __a = allocator_type())    : _M_ht(__n, __hf, __eql, __a)    { _M_ht.insert_equal(__f, __l); }#endif /*__STL_MEMBER_TEMPLATES */public:  size_type size() const { return _M_ht.size(); }  size_type max_size() const { return _M_ht.max_size(); }  bool empty() const { return _M_ht.empty(); }  void swap(hash_multimap& __hs) { _M_ht.swap(__hs._M_ht); }#ifdef __STL_MEMBER_TEMPLATES  template <class _K1, class _T1, class _HF, class _EqK, class _Al>  friend bool operator== (const hash_multimap<_K1, _T1, _HF, _EqK, _Al>&,                          const hash_multimap<_K1, _T1, _HF, _EqK, _Al>&);#else /* __STL_MEMBER_TEMPLATES */  friend bool __STD_QUALIFIER  operator== __STL_NULL_TMPL_ARGS (const hash_multimap&,const hash_multimap&);#endif /* __STL_MEMBER_TEMPLATES */  iterator begin() { return _M_ht.begin(); }  iterator end() { return _M_ht.end(); }  const_iterator begin() const { return _M_ht.begin(); }  const_iterator end() const { return _M_ht.end(); }public:  iterator insert(const value_type& __obj)     { return _M_ht.insert_equal(__obj); }#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  void insert(_InputIterator __f, _InputIterator __l)     { _M_ht.insert_equal(__f,__l); }#else  void insert(const value_type* __f, const value_type* __l) {    _M_ht.insert_equal(__f,__l);  }  void insert(const_iterator __f, const_iterator __l)     { _M_ht.insert_equal(__f, __l); }#endif /*__STL_MEMBER_TEMPLATES */  iterator insert_noresize(const value_type& __obj)    { return _M_ht.insert_equal_noresize(__obj); }      iterator find(const key_type& __key) { return _M_ht.find(__key); }  const_iterator find(const key_type& __key) const     { return _M_ht.find(__key); }  size_type count(const key_type& __key) const { return _M_ht.count(__key); }    pair<iterator, iterator> equal_range(const key_type& __key)    { return _M_ht.equal_range(__key); }  pair<const_iterator, const_iterator>  equal_range(const key_type& __key) const    { return _M_ht.equal_range(__key); }  size_type erase(const key_type& __key) {return _M_ht.erase(__key); }  void erase(iterator __it) { _M_ht.erase(__it); }  void erase(iterator __f, iterator __l) { _M_ht.erase(__f, __l); }  void clear() { _M_ht.clear(); }public:  void resize(size_type __hint) { _M_ht.resize(__hint); }  size_type bucket_count() const { return _M_ht.bucket_count(); }  size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }  size_type elems_in_bucket(size_type __n) const    { return _M_ht.elems_in_bucket(__n); }};template <class _Key, class _Tp, class _HF, class _EqKey, class _Alloc>inline bool operator==(const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm1,           const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm2){  return __hm1._M_ht == __hm2._M_ht;}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _Key, class _Tp, class _HF, class _EqKey, class _Alloc>inline bool operator!=(const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm1,           const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm2) {  return !(__hm1 == __hm2);}template <class _Key, class _Tp, class _HashFcn, class _EqlKey, class _Alloc>inline void swap(hash_multimap<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm1,     hash_multimap<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm2){  __hm1.swap(__hm2);}#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */// Specialization of insert_iterator so that it will work for hash_map// and hash_multimap.#ifdef __STL_CLASS_PARTIAL_SPECIALIZATIONtemplate <class _Key, class _Tp, class _HashFn,  class _EqKey, class _Alloc>class insert_iterator<hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc> > {protected:  typedef hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc> _Container;  _Container* container;public:  typedef _Container          container_type;  typedef output_iterator_tag iterator_category;  typedef void                value_type;  typedef void                difference_type;  typedef void                pointer;  typedef void                reference;  insert_iterator(_Container& __x) : container(&__x) {}  insert_iterator(_Container& __x, typename _Container::iterator)    : container(&__x) {}  insert_iterator<_Container>&  operator=(const typename _Container::value_type& __value) {     container->insert(__value);    return *this;  }  insert_iterator<_Container>& operator*() { return *this; }  insert_iterator<_Container>& operator++() { return *this; }  insert_iterator<_Container>& operator++(int) { return *this; }};template <class _Key, class _Tp, class _HashFn,  class _EqKey, class _Alloc>class insert_iterator<hash_multimap<_Key, _Tp, _HashFn, _EqKey, _Alloc> > {protected:  typedef hash_multimap<_Key, _Tp, _HashFn, _EqKey, _Alloc> _Container;  _Container* container;  typename _Container::iterator iter;public:  typedef _Container          container_type;  typedef output_iterator_tag iterator_category;  typedef void                value_type;  typedef void                difference_type;  typedef void                pointer;  typedef void                reference;  insert_iterator(_Container& __x) : container(&__x) {}  insert_iterator(_Container& __x, typename _Container::iterator)    : container(&__x) {}  insert_iterator<_Container>&  operator=(const typename _Container::value_type& __value) {     container->insert(__value);    return *this;  }  insert_iterator<_Container>& operator*() { return *this; }  insert_iterator<_Container>& operator++() { return *this; }  insert_iterator<_Container>& operator++(int) { return *this; }};#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */#if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)#pragma reset woff 1174#pragma reset woff 1375#endif__STL_END_NAMESPACE#endif /* __SGI_STL_INTERNAL_HASH_MAP_H */// Local Variables:// mode:C++// End:

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久久三级丝袜| 久久99精品国产麻豆不卡| 日本在线不卡视频| 成人黄色片在线观看| 91精品综合久久久久久| 亚洲视频免费观看| 国产激情视频一区二区三区欧美| 欧美mv日韩mv国产网站app| 国产精品美女久久久久aⅴ| 日韩av一二三| 在线亚洲免费视频| 综合色中文字幕| 国产盗摄精品一区二区三区在线 | 亚洲精品国产精华液| 国产一区二区三区综合| 91麻豆精品国产91久久久久久久久 | 蜜臀a∨国产成人精品| 91国偷自产一区二区使用方法| 久久综合九色综合97婷婷女人| 丝袜国产日韩另类美女| 91在线一区二区三区| 国产欧美视频一区二区三区| 精品一区二区三区在线播放| 91精品国产高清一区二区三区蜜臀| 亚洲裸体xxx| 91黄色免费观看| 综合亚洲深深色噜噜狠狠网站| 成人美女在线观看| 久久综合网色—综合色88| 久久99精品国产麻豆不卡| 亚洲精品一区二区三区影院| 麻豆精品在线观看| 欧美大片国产精品| 蜜桃一区二区三区四区| 精品国产伦一区二区三区观看体验 | 色综合天天性综合| 一区二区免费在线| 欧美中文字幕一区二区三区亚洲| 一区二区三区四区乱视频| 91在线观看污| 亚洲一区二区欧美| 91精品国产91久久久久久一区二区| 日本不卡免费在线视频| 日韩欧美在线观看一区二区三区| 午夜精品久久久久久久久| 3751色影院一区二区三区| 久久成人久久爱| 国产欧美日韩在线| 91免费国产在线| 首页欧美精品中文字幕| 精品免费99久久| proumb性欧美在线观看| 一区二区三区欧美日| 欧美一二三区在线| 成人免费视频国产在线观看| 亚洲久草在线视频| 日韩一区国产二区欧美三区| 国产精品77777竹菊影视小说| 中文字幕一区二区三区四区不卡| 欧美亚洲动漫精品| 国内精品国产成人国产三级粉色| 国产精品毛片久久久久久| 欧美性受极品xxxx喷水| 久久超级碰视频| 亚洲视频精选在线| 日韩三级精品电影久久久 | 理论电影国产精品| 中文字幕亚洲在| 欧美一区二区三区在线电影| 国产精品亚洲成人| 亚洲精品乱码久久久久久日本蜜臀| 欧美一级二级在线观看| www.亚洲色图.com| 免费久久99精品国产| 国产精品国产自产拍高清av| 777奇米成人网| 97精品久久久午夜一区二区三区| 蜜桃av噜噜一区| 最新国产成人在线观看| 69堂亚洲精品首页| 91丨porny丨首页| 精品一区二区av| 婷婷国产在线综合| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 欧美日韩精品一区二区天天拍小说| 国产成人啪午夜精品网站男同| 午夜精品aaa| 亚洲欧美偷拍三级| 久久亚洲精华国产精华液| 欧美年轻男男videosbes| 不卡电影一区二区三区| 精品亚洲成a人在线观看| 亚洲一二三区在线观看| 国产精品嫩草99a| 精品久久久久香蕉网| 欧美浪妇xxxx高跟鞋交| 一本色道亚洲精品aⅴ| 粉嫩久久99精品久久久久久夜| 久久99精品久久久久久久久久久久| 亚洲国产色一区| 亚洲精品视频免费观看| 亚洲欧洲韩国日本视频| 久久免费电影网| www久久精品| 精品av综合导航| 精品久久久久久久人人人人传媒| 欧美日韩一区二区三区在线| 日本道色综合久久| 色综合视频在线观看| 91麻豆文化传媒在线观看| 成人黄色小视频在线观看| 懂色av中文一区二区三区| 国产成a人无v码亚洲福利| 国产一区二区三区| 国产精品一区二区男女羞羞无遮挡| 美女高潮久久久| 激情伊人五月天久久综合| 久久99热99| 国产精品一二二区| 成人午夜精品在线| 91小视频在线免费看| 色综合天天综合在线视频| 91视频91自| 欧美亚洲国产bt| 91精品福利在线一区二区三区| 日韩一卡二卡三卡四卡| 精品久久久久久久久久久久包黑料 | 日韩和的一区二区| 日韩国产高清在线| 精品制服美女丁香| 国产乱码精品一区二区三| 成人精品免费看| 在线一区二区观看| 欧美日韩国产区一| www精品美女久久久tv| 国产精品九色蝌蚪自拍| 亚洲国产精品天堂| 麻豆精品一区二区综合av| 国产91精品久久久久久久网曝门| 一本久久精品一区二区| 在线播放/欧美激情| 久久免费精品国产久精品久久久久| 偷拍与自拍一区| 国产一区在线观看麻豆| 波多野结衣亚洲一区| 欧美精品黑人性xxxx| 久久久五月婷婷| 亚洲精品欧美激情| 精品伊人久久久久7777人| 成年人网站91| 欧美精品v日韩精品v韩国精品v| 久久影院午夜论| 亚洲自拍偷拍麻豆| 国产一区二三区| 91黄视频在线观看| 久久综合久色欧美综合狠狠| 亚洲综合在线第一页| 国内久久精品视频| 欧美日韩一区二区三区四区五区 | 欧美一级免费大片| 国产精品传媒在线| 久久国产人妖系列| 在线日韩av片| 国产欧美一区二区精品忘忧草| 亚洲国产日韩在线一区模特 | 中文字幕免费不卡| 老汉av免费一区二区三区| 欧美中文字幕一区| 中文字幕色av一区二区三区| 日韩专区一卡二卡| 一本大道久久a久久综合| 久久精品一区二区| 男女男精品视频| 欧美日韩三级视频| 成人免费在线视频| 成人中文字幕电影| 欧美成人一区二区三区片免费| 亚洲欧美国产毛片在线| 国产高清不卡二三区| 精品乱人伦一区二区三区| 亚洲成年人影院| 91碰在线视频| 亚洲欧洲精品一区二区三区| 国产一区二区三区四区五区入口| 欧美日韩大陆一区二区| 一区二区三区国产精品| 99视频精品全部免费在线| 亚洲国产经典视频| 成人美女视频在线观看| 欧美大肚乱孕交hd孕妇| 免费观看91视频大全| 91麻豆精品国产自产在线| 亚洲一级二级三级在线免费观看| 91首页免费视频| 亚洲三级理论片| 在线欧美小视频| 亚洲午夜免费福利视频| 欧美日韩性生活| 香蕉av福利精品导航| 欧美日韩亚洲另类|