亚洲欧美第一页_禁久久精品乱码_粉嫩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 頁
字號(hào):
/* * Copyright (c) 1996 * Silicon Graphics Computer Systems, Inc. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Silicon Graphics makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Hewlett-Packard Company makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * *//* NOTE: This is an internal header file, included by other STL headers. *   You should not attempt to use it directly. */#ifndef __SGI_STL_INTERNAL_HASH_MAP_H#define __SGI_STL_INTERNAL_HASH_MAP_H__STL_BEGIN_NAMESPACE#if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)#pragma set woff 1174#pragma set woff 1375#endif// Forward declaration of equality operator; needed for friend declaration.template <class _Key, class _Tp,          class _HashFcn  __STL_DEPENDENT_DEFAULT_TMPL(hash<_Key>),          class _EqualKey __STL_DEPENDENT_DEFAULT_TMPL(equal_to<_Key>),          class _Alloc =  __STL_DEFAULT_ALLOCATOR(_Tp) >class hash_map;template <class _Key, class _Tp, class _HashFn, class _EqKey, class _Alloc>inline bool operator==(const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&,                       const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&);template <class _Key, class _Tp, class _HashFcn, class _EqualKey,          class _Alloc>class hash_map{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_map() : _M_ht(100, hasher(), key_equal(), allocator_type()) {}  explicit hash_map(size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}  hash_map(size_type __n, const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type()) {}  hash_map(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_map(_InputIterator __f, _InputIterator __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  template <class _InputIterator>  hash_map(_InputIterator __f, _InputIterator __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  template <class _InputIterator>  hash_map(_InputIterator __f, _InputIterator __l, size_type __n,           const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  template <class _InputIterator>  hash_map(_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_unique(__f, __l); }#else  hash_map(const value_type* __f, const value_type* __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  hash_map(const value_type* __f, const value_type* __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  hash_map(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_unique(__f, __l); }  hash_map(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_unique(__f, __l); }  hash_map(const_iterator __f, const_iterator __l)    : _M_ht(100, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  hash_map(const_iterator __f, const_iterator __l, size_type __n)    : _M_ht(__n, hasher(), key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  hash_map(const_iterator __f, const_iterator __l, size_type __n,           const hasher& __hf)    : _M_ht(__n, __hf, key_equal(), allocator_type())    { _M_ht.insert_unique(__f, __l); }  hash_map(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_unique(__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_map& __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_map<_K1, _T1, _HF, _EqK, _Al>&,                          const hash_map<_K1, _T1, _HF, _EqK, _Al>&);#else /* __STL_MEMBER_TEMPLATES */  friend bool __STD_QUALIFIER  operator== __STL_NULL_TMPL_ARGS (const hash_map&, const hash_map&);#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:  pair<iterator,bool> insert(const value_type& __obj)    { return _M_ht.insert_unique(__obj); }#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  void insert(_InputIterator __f, _InputIterator __l)    { _M_ht.insert_unique(__f,__l); }#else  void insert(const value_type* __f, const value_type* __l) {    _M_ht.insert_unique(__f,__l);  }  void insert(const_iterator __f, const_iterator __l)    { _M_ht.insert_unique(__f, __l); }#endif /*__STL_MEMBER_TEMPLATES */  pair<iterator,bool> insert_noresize(const value_type& __obj)    { return _M_ht.insert_unique_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); }  _Tp& operator[](const key_type& __key) {    return _M_ht.find_or_insert(value_type(__key, _Tp())).second;  }  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(); }  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 _HashFcn, class _EqlKey, class _Alloc>inline bool operator==(const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm1,           const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm2){  return __hm1._M_ht == __hm2._M_ht;}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _Key, class _Tp, class _HashFcn, class _EqlKey, class _Alloc>inline bool operator!=(const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm1,           const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm2) {  return !(__hm1 == __hm2);}template <class _Key, class _Tp, class _HashFcn, class _EqlKey, class _Alloc>inline void swap(hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm1,     hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm2){  __hm1.swap(__hm2);}#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */// Forward declaration of equality operator; needed for friend declaration.template <class _Key, class _Tp,          class _HashFcn  __STL_DEPENDENT_DEFAULT_TMPL(hash<_Key>),          class _EqualKey __STL_DEPENDENT_DEFAULT_TMPL(equal_to<_Key>),          class _Alloc =  __STL_DEFAULT_ALLOCATOR(_Tp) >class hash_multimap;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);template <class _Key, class _Tp, class _HashFcn, class _EqualKey,           class _Alloc>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品91自产拍在线观看一区| 欧美亚州韩日在线看免费版国语版| 欧美精品视频www在线观看 | 麻豆精品在线观看| 日韩欧美一区二区免费| 国产自产高清不卡| 国产精品黄色在线观看| 欧美性三三影院| 欧美aaaaaa午夜精品| 久久久久久久久久久久久久久99 | 亚洲国产中文字幕在线视频综合| 欧美网站一区二区| 狠狠色丁香久久婷婷综合丁香| 久久久精品免费免费| 色婷婷久久综合| 天天操天天综合网| 精品对白一区国产伦| 91美女视频网站| 日本欧美一区二区在线观看| 国产午夜精品在线观看| 在线观看三级视频欧美| 精品中文av资源站在线观看| 中国色在线观看另类| 欧美日韩高清一区| 国产福利91精品一区| 亚洲影院免费观看| 久久久青草青青国产亚洲免观| 色呦呦国产精品| 国内精品国产三级国产a久久| 亚洲精品乱码久久久久| 日韩精品在线网站| 日本道在线观看一区二区| 久久99精品国产.久久久久久| 亚洲男女毛片无遮挡| 日韩欧美一级精品久久| 色婷婷亚洲综合| 国产一区二区三区| 五月婷婷激情综合| 中文字幕中文字幕一区二区| 日韩欧美黄色影院| 91极品视觉盛宴| 成人一区二区三区在线观看| 午夜精品福利久久久| 中文字幕一区二区不卡| 久久亚洲二区三区| 日韩精品专区在线影院观看| 欧美综合视频在线观看| 成熟亚洲日本毛茸茸凸凹| 蜜桃视频一区二区| 丝袜a∨在线一区二区三区不卡| 国产精品激情偷乱一区二区∴| 精品国产一区二区亚洲人成毛片| 欧美日韩成人综合| 欧美亚日韩国产aⅴ精品中极品| youjizz国产精品| 九九九久久久精品| 青青草97国产精品免费观看 | 日本欧美久久久久免费播放网| 亚洲同性gay激情无套| 国产喷白浆一区二区三区| 欧美一级二级三级乱码| 欧美高清精品3d| 精品视频一区 二区 三区| 色哟哟欧美精品| 91黄色免费看| 91麻豆123| 色吧成人激情小说| 99久久精品99国产精品 | 亚洲一区二区在线观看视频| 日韩美女视频19| 国产精品萝li| 中文字幕一区二区5566日韩| 国产精品乱人伦一区二区| 中文字幕av免费专区久久| 欧美韩国一区二区| 国产精品的网站| 亚洲欧洲国产专区| 一个色在线综合| 五月婷婷综合网| 午夜精品久久久久| 麻豆精品一区二区av白丝在线| 日韩精品乱码av一区二区| 久久电影网站中文字幕| 精品一区二区久久| 国产成人精品一区二| 91色视频在线| 欧美日韩电影一区| 精品免费99久久| 欧美激情一区二区三区全黄| 亚洲欧洲性图库| 亚洲国产精品久久久久婷婷884| 亚洲高清视频的网址| 免费欧美高清视频| 高清日韩电视剧大全免费| 色综合天天综合色综合av | 欧美精品一区二区三区一线天视频| 欧美不卡123| 国产精品视频一二三区| 一区二区三区在线播| 日韩和的一区二区| 国产麻豆成人传媒免费观看| 成人午夜电影小说| 欧美三级韩国三级日本一级| 欧美刺激脚交jootjob| 国产精品福利av| 日韩avvvv在线播放| 成人中文字幕合集| 欧美日韩不卡在线| 亚洲国产高清在线观看视频| 亚洲一区二区不卡免费| 久久国内精品视频| 97国产精品videossex| 欧美一区二区三区免费在线看| 日本一区二区三区电影| 婷婷开心激情综合| eeuss影院一区二区三区| 在线电影院国产精品| 国产精品人人做人人爽人人添| 亚洲妇熟xx妇色黄| 成人av网址在线| 在线播放日韩导航| 亚洲视频免费看| 国产在线视频不卡二| 欧美性大战久久久久久久蜜臀| 久久久久久久久一| 日本欧美在线看| 一本到一区二区三区| 欧美精品一区二区不卡| 亚洲高清三级视频| av一区二区久久| 久久综合色婷婷| 亚洲观看高清完整版在线观看| 福利视频网站一区二区三区| 制服丝袜在线91| 亚洲伊人色欲综合网| 成人精品小蝌蚪| 欧美mv和日韩mv国产网站| 亚洲电影在线播放| 99re这里只有精品首页| 久久精品视频免费| 狠狠色丁香婷综合久久| 91麻豆精品91久久久久同性| 亚洲精品亚洲人成人网在线播放| 国产精品一区二区视频| 精品久久久久久久久久久院品网| 日日夜夜精品视频免费| 欧美性高清videossexo| 一区二区三区av电影| 97精品电影院| 亚洲女同女同女同女同女同69| 成人午夜精品一区二区三区| 久久久久久一二三区| 国产真实乱对白精彩久久| 日韩女同互慰一区二区| 蜜臀a∨国产成人精品| 日韩一级成人av| 免费成人av在线| 这里只有精品电影| 婷婷中文字幕一区三区| 欧美群妇大交群的观看方式| 亚洲成a人片在线不卡一二三区| 在线观看免费成人| 亚洲一区二区三区四区中文字幕| 91成人国产精品| 污片在线观看一区二区| 欧美老年两性高潮| 蜜臀久久99精品久久久久宅男| 91精品国产乱码| 久久99精品久久久久久国产越南 | 日韩成人av影视| 日韩精品中文字幕一区| 国产呦萝稀缺另类资源| 国产精品无遮挡| 91色视频在线| 婷婷丁香久久五月婷婷| 欧美一卡2卡三卡4卡5免费| 久久成人综合网| 久久综合色之久久综合| gogo大胆日本视频一区| 亚洲一二三专区| 欧美一区二区三区的| 国产精品69毛片高清亚洲| 国产精品天美传媒| 欧美视频自拍偷拍| 经典三级一区二区| 国产精品国产三级国产aⅴ无密码| 色就色 综合激情| 青草国产精品久久久久久| 国产欧美视频一区二区| 色94色欧美sute亚洲线路一久| 日韩高清不卡一区二区三区| 国产偷国产偷精品高清尤物| 91看片淫黄大片一级在线观看| 亚洲v精品v日韩v欧美v专区| 日韩欧美国产麻豆| 99re热这里只有精品视频| 天天影视网天天综合色在线播放| 久久―日本道色综合久久| 91麻豆免费看| 精品一区二区日韩|