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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stl_hash_map.h

?? STL 最新源代碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
class hash_multimap{  // requirements:  __STL_CLASS_REQUIRES(_Key, _Assignable);  __STL_CLASS_REQUIRES(_Tp, _Assignable);  __STL_CLASS_UNARY_FUNCTION_CHECK(_HashFcn, size_t, _Key);  __STL_CLASS_BINARY_FUNCTION_CHECK(_EqualKey, bool, _Key, _Key);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:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲丝袜自拍清纯另类| 欧美日韩成人一区| 国产精品一二三四五| 奇米综合一区二区三区精品视频| 亚洲男人天堂一区| 亚洲国产成人高清精品| 午夜视频在线观看一区二区三区| 亚洲无人区一区| 老汉av免费一区二区三区| 国产另类ts人妖一区二区| 国产成a人亚洲| 成人黄页毛片网站| 一区二区三区欧美视频| 日韩影院在线观看| 国产一区二区福利视频| 成人av在线播放网址| voyeur盗摄精品| 日韩欧美国产一区在线观看| 日本免费在线视频不卡一不卡二| 99视频精品在线| 91色|porny| 一区二区三区精密机械公司| 99re视频这里只有精品| 一区二区三区免费看视频| 欧美性高清videossexo| 亚洲国产三级在线| 欧美一级xxx| 精品一区二区三区在线视频| 九色porny丨国产精品| 久久久久久麻豆| 成人动漫在线一区| 亚洲婷婷在线视频| 欧美日本国产一区| 精品一区二区三区视频在线观看 | 免费观看日韩电影| 欧美日韩久久久| 精品亚洲国内自在自线福利| 欧美精彩视频一区二区三区| 97se亚洲国产综合自在线 | 欧美亚洲动漫制服丝袜| 盗摄精品av一区二区三区| 中文字幕在线不卡一区二区三区 | 亚洲一区二区四区蜜桃| 欧美日韩久久久久久| 午夜视频在线观看一区二区三区| 欧美体内she精高潮| 亚州成人在线电影| 精品中文字幕一区二区小辣椒 | 久久精品噜噜噜成人av农村| 日韩欧美在线123| av亚洲精华国产精华| 91精品国产综合久久精品性色| 日韩av一区二区三区| 久久久久亚洲蜜桃| 国产精品久久久久久久浪潮网站| 不卡视频在线看| 美腿丝袜亚洲色图| 中文字幕在线播放不卡一区| 欧美日韩精品电影| 成人小视频免费在线观看| 亚洲综合另类小说| 精品国产精品一区二区夜夜嗨| 成人一区二区三区| 日本91福利区| 最新日韩av在线| 欧美一区国产二区| 国产69精品久久99不卡| 日日噜噜夜夜狠狠视频欧美人 | 国产综合色产在线精品| 久久精品国产99| 国产中文一区二区三区| 性欧美疯狂xxxxbbbb| 亚洲综合色在线| 亚洲激情第一区| 久久精品一级爱片| 国产清纯在线一区二区www| 日韩一区二区在线看| 欧美性色欧美a在线播放| 色综合久久中文综合久久97| 国产激情一区二区三区| 日本一道高清亚洲日美韩| 亚洲黄网站在线观看| 欧美电影免费观看完整版| 2024国产精品视频| 一本色道a无线码一区v| 韩国精品主播一区二区在线观看| 国产美女在线观看一区| 99免费精品在线| 日韩和欧美的一区| 国产成人精品亚洲777人妖| 99久久国产免费看| 成人白浆超碰人人人人| 成人av在线资源| 国产精品亚洲午夜一区二区三区 | 亚洲尤物视频在线| 久久久亚洲高清| 91精品国产免费| 亚洲制服丝袜一区| 欧美午夜精品久久久久久超碰| 国产剧情一区二区| 午夜精品爽啪视频| 日韩一级精品视频在线观看| 成人不卡免费av| 成年人国产精品| 天天色天天操综合| 韩国三级在线一区| 国产成人av资源| 91在线丨porny丨国产| 日本道在线观看一区二区| 欧美日韩一区久久| 日韩一区二区免费在线电影| 久久久美女毛片| 日韩理论片网站| 日韩黄色在线观看| 国产成人亚洲精品青草天美| 91一区一区三区| 91精品国产91热久久久做人人| 精品久久一区二区| 最新久久zyz资源站| 日韩精品电影一区亚洲| 国产.精品.日韩.另类.中文.在线.播放| 91麻豆免费看片| 日韩欧美你懂的| 亚洲免费在线看| 久久不见久久见中文字幕免费| 成人蜜臀av电影| 久久精品综合网| 亚洲免费三区一区二区| 日本91福利区| 在线精品观看国产| 久久精品人人做人人爽人人| 一区二区在线观看不卡| 精品一区二区三区欧美| 在线精品视频一区二区三四| 久久一留热品黄| 亚洲激情中文1区| 国产一区二区三区| 欧美日韩日日夜夜| 综合久久久久久久| 国产成人av电影| 青青草97国产精品免费观看无弹窗版| 国产精品夜夜爽| 日韩免费视频一区| 日日夜夜免费精品| 欧美一级午夜免费电影| 一区二区三区资源| 一本色道综合亚洲| 久久久精品一品道一区| 蜜桃视频在线观看一区二区| 欧美日韩高清一区二区| 国产精品一区二区三区乱码| 日韩欧美综合一区| 精品一区二区三区视频| 美女在线观看视频一区二区| 欧美日韩另类国产亚洲欧美一级| 一区在线观看视频| 一本到不卡精品视频在线观看| 精品女同一区二区| 久久国产精品免费| 亚洲午夜久久久| 色天使色偷偷av一区二区| 免费亚洲电影在线| 亚洲人午夜精品天堂一二香蕉| 日韩欧美在线观看一区二区三区| 激情文学综合丁香| 亚洲成在人线在线播放| 国产精品午夜免费| 中文字幕 久热精品 视频在线| 国产91在线观看丝袜| 久久午夜电影网| 国产很黄免费观看久久| 日韩理论电影院| 丝袜美腿成人在线| eeuss国产一区二区三区| 日韩欧美一区在线观看| 91视频一区二区| 亚洲人成网站在线| 91网站在线观看视频| 亚洲天堂福利av| 色先锋久久av资源部| 亚洲蜜臀av乱码久久精品蜜桃| 97精品久久久午夜一区二区三区| 国产精品国产自产拍高清av王其| 国产在线播放一区二区三区| 国产日韩精品一区二区三区| 成人国产电影网| 美女任你摸久久 | 国产成人在线视频免费播放| 久久久久久久性| 国内成人精品2018免费看| 久久先锋影音av| 波多野结衣亚洲一区| 亚洲麻豆国产自偷在线| 欧美日韩中字一区| 美日韩一区二区三区| 国产精品美女久久福利网站| 99久久久免费精品国产一区二区| 亚洲免费av在线| 精品福利一区二区三区| jizzjizzjizz欧美|