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

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

?? stl_hash_map.h

?? The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterat
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* * 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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产剧情一区在线| 精品国产乱码久久久久久图片 | 91蜜桃婷婷狠狠久久综合9色| 欧美综合一区二区三区| 精品美女一区二区| 午夜欧美视频在线观看| 色婷婷综合久久久久中文 | 国产麻豆欧美日韩一区| 欧美日韩一区二区三区免费看| 国产色一区二区| 久久99国产精品久久99果冻传媒| 在线一区二区视频| 国产精品久久久久国产精品日日 | 一区二区三区久久| 成人av电影免费在线播放| 精品国产成人系列| 日本不卡视频一二三区| 欧美日韩国产综合一区二区三区| 中文字幕亚洲一区二区av在线| 国产中文一区二区三区| 91精品国产色综合久久ai换脸 | 亚洲欧美综合色| 韩国精品一区二区| 日韩精品一区二区三区视频播放| 亚洲成人久久影院| 欧美日韩成人在线一区| 午夜精品福利视频网站| 欧美视频第二页| 亚洲v中文字幕| 欧美日韩国产欧美日美国产精品| 伊人夜夜躁av伊人久久| 在线观看国产精品网站| 亚洲欧美一区二区三区孕妇| 成人sese在线| 成人免费在线播放视频| 成人激情校园春色| 亚洲欧美日韩人成在线播放| 99国产精品国产精品毛片| 亚洲天堂网中文字| 91久久久免费一区二区| 亚洲动漫第一页| 欧美日韩在线三区| 免费成人小视频| 精品国产不卡一区二区三区| 国产精品12区| 18欧美亚洲精品| 欧美日韩在线播| 日本亚洲免费观看| 欧美精品一区二区三区视频| 成人在线一区二区三区| 亚洲另类在线一区| 欧美日韩大陆在线| 狠狠色丁香婷婷综合| 国产精品久久久久久亚洲伦| 91美女片黄在线观看| 亚洲成在人线在线播放| 欧美xingq一区二区| 成人丝袜高跟foot| 亚洲一二三四久久| 精品久久久久久久久久久久久久久久久 | 亚洲午夜电影在线| 91精品国产入口| 国产99久久久国产精品潘金网站| 中文字幕中文乱码欧美一区二区| 在线一区二区三区| 国产在线麻豆精品观看| 亚洲女女做受ⅹxx高潮| 精品日韩在线观看| 91国产精品成人| 国产一区二区三区在线观看精品 | 国产精品99久久久久久宅男| 亚洲免费观看高清完整版在线观看 | 欧美日韩一区不卡| 精品一二三四区| 亚洲精品免费一二三区| 精品免费视频一区二区| 91蝌蚪porny九色| 久久精品久久综合| 一区二区三区.www| 国产视频一区在线观看 | 久久婷婷色综合| 欧美亚洲自拍偷拍| 成人在线视频一区二区| 免费黄网站欧美| 亚洲一区二区三区免费视频| 久久精品在这里| 日韩你懂的在线播放| 在线观看日韩毛片| av资源站一区| 国产丶欧美丶日本不卡视频| 麻豆精品精品国产自在97香蕉 | 1区2区3区欧美| 亚洲精品在线观看网站| 欧美一区二区三区免费在线看| 色综合一区二区三区| 成人av网站在线| 国产主播一区二区| 国内精品嫩模私拍在线| 天天综合色天天综合色h| 亚洲精品大片www| 亚洲人成网站在线| 中文字幕不卡在线| 欧美韩日一区二区三区四区| 精品国产伦一区二区三区观看方式| 欧美日韩三级在线| 在线免费观看不卡av| aaa欧美色吧激情视频| 粉嫩av一区二区三区粉嫩 | 国产欧美精品国产国产专区| 日韩一区二区在线看| 69p69国产精品| 在线成人免费观看| 777奇米四色成人影色区| 67194成人在线观看| 日韩欧美一级精品久久| 欧美电影一区二区三区| 日韩欧美高清一区| 精品乱码亚洲一区二区不卡| 久久综合五月天婷婷伊人| 久久久久久久久99精品| 中文字幕高清不卡| 亚洲人一二三区| 亚洲一区二区三区四区在线观看| 亚洲国产综合在线| 日韩综合小视频| 裸体健美xxxx欧美裸体表演| 韩国欧美国产一区| 国产mv日韩mv欧美| 色婷婷久久久亚洲一区二区三区| 色综合色综合色综合| 欧美日韩三级一区二区| 日韩免费高清av| 欧美国产日韩一二三区| 亚洲摸摸操操av| 日本成人在线网站| 成人中文字幕电影| 欧美性感一区二区三区| 91.com视频| 国产视频一区在线观看| 亚洲免费av高清| 毛片av一区二区三区| 成人免费高清在线| 欧美日韩视频不卡| 久久综合九色综合久久久精品综合| 国产亚洲欧洲一区高清在线观看| 亚洲欧美日韩国产另类专区| 五月综合激情婷婷六月色窝| 国产一区二区不卡| 欧美在线你懂得| 亚洲精品在线电影| 亚洲综合图片区| 国内偷窥港台综合视频在线播放| av亚洲精华国产精华精华| 337p亚洲精品色噜噜狠狠| 国产午夜亚洲精品羞羞网站| 一区二区三区四区不卡在线| 精久久久久久久久久久| 91香蕉视频污| 久久免费午夜影院| 性做久久久久久| 成人免费黄色大片| 精品少妇一区二区三区在线播放 | 亚洲成在线观看| 成人免费av网站| 欧美一级日韩免费不卡| 国产精品国模大尺度视频| 日本午夜精品视频在线观看| 99精品欧美一区二区三区小说| 91精品国产91久久久久久一区二区 | 高清国产一区二区| 色婷婷综合久色| 久久久久97国产精华液好用吗| 亚洲一区二区视频在线观看| 丰满岳乱妇一区二区三区| 日韩区在线观看| 亚洲午夜久久久久久久久久久| 成人美女在线视频| 日韩你懂的电影在线观看| 亚洲一二三专区| 欧美放荡的少妇| 《视频一区视频二区| 国产高清成人在线| 欧美mv和日韩mv的网站| 日日夜夜免费精品| 欧洲国产伦久久久久久久| 国产欧美精品在线观看| 国产一区中文字幕| 日韩一区二区三区视频| 五月天欧美精品| 欧美日韩国产片| 图片区小说区区亚洲影院| 91视频在线观看| 日韩伦理电影网| 成人国产精品免费网站| 国产视频一区在线播放| 国产高清久久久| 国产欧美一区视频| 粉嫩av一区二区三区粉嫩 | 大桥未久av一区二区三区中文| 欧美va在线播放|