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

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

?? stl_hash_map.h

?? STL 最新源代碼
?? 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#include <concept_checks.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{  // 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_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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲免费av高清| 欧美一区二区啪啪| 一区二区三区精品| 欧美综合欧美视频| 精品久久久久一区二区国产| 久久精品国产精品青草| 久久综合色综合88| 成人av影视在线观看| 久久夜色精品一区| 成人国产在线观看| 午夜久久电影网| 91女神在线视频| 国产精品久久99| 欧美人妖巨大在线| 国产在线视频不卡二| 亚洲成a人在线观看| a美女胸又www黄视频久久| 久久久久久久久久久电影| 午夜精品爽啪视频| 26uuu色噜噜精品一区| 国产成人免费视频网站| 欧美国产日本韩| 欧美日本视频在线| 国产在线精品免费| 亚洲综合区在线| 久久久久久久久久久黄色| 欧美在线播放高清精品| 国内精品久久久久影院色 | 午夜精品福利久久久| 精品国产乱码久久久久久夜甘婷婷 | 91精品国产福利| 波多野结衣精品在线| 久久精品国产一区二区三| 中文字幕av免费专区久久| 欧美一区二区二区| av在线一区二区三区| 美女尤物国产一区| 无码av免费一区二区三区试看 | 在线不卡一区二区| 91在线视频免费91| 不卡的电影网站| 免费在线观看一区二区三区| 亚洲精品一区二区在线观看| 国产亚洲欧美激情| 亚洲黄色录像片| 日本伊人色综合网| 精品一区二区三区的国产在线播放| 免费观看日韩电影| 成人福利视频网站| 在线播放一区二区三区| 欧美岛国在线观看| 亚洲人成伊人成综合网小说| 亚洲欧美另类久久久精品2019| 久久久噜噜噜久久人人看 | 中文字幕一区二区三区四区| 日本一区免费视频| 亚洲免费在线播放| 丝袜国产日韩另类美女| 国内精品伊人久久久久av一坑| 国产一区二区三区美女| 精品影视av免费| www.欧美.com| 欧美日韩在线不卡| 精品福利一区二区三区免费视频| 26uuu精品一区二区| 亚洲精品老司机| 精品亚洲欧美一区| 日本精品一级二级| 精品久久久久香蕉网| 国产日韩精品一区二区三区| 亚洲国产欧美日韩另类综合| 免费看黄色91| 在线视频综合导航| 久久久亚洲午夜电影| 亚洲国产乱码最新视频| 国产一区美女在线| 在线成人免费观看| 亚洲最大成人网4388xx| 国产在线视频不卡二| 欧美成人艳星乳罩| 亚洲女同女同女同女同女同69| 亚洲柠檬福利资源导航| 一区二区不卡在线播放| 国产校园另类小说区| 精品粉嫩超白一线天av| 久久久久国产一区二区三区四区| 久久精品免视看| 亚洲一区二区在线免费观看视频| 国产精品一级二级三级| 日韩一区二区视频| 亚洲已满18点击进入久久| 97se狠狠狠综合亚洲狠狠| 久久久久久麻豆| 国产中文一区二区三区| 日韩美女主播在线视频一区二区三区| 国产精品色婷婷久久58| 福利电影一区二区三区| 久久精品综合网| 激情欧美一区二区| 久久久久久久一区| 国产成人在线网站| 欧美国产日产图区| 色屁屁一区二区| 亚洲午夜国产一区99re久久| 欧美特级限制片免费在线观看| 亚洲狼人国产精品| 欧美三级电影一区| 午夜精品久久久| 精品日韩成人av| 成人高清视频在线观看| 综合久久久久综合| 欧美一区二区三区小说| 国模冰冰炮一区二区| 国产精品高潮呻吟| 日本高清不卡视频| 精品综合免费视频观看| 国产精品不卡在线| 日韩欧美另类在线| 成人黄色免费短视频| 丝袜a∨在线一区二区三区不卡| 日韩精品一区二区在线| 91丨porny丨户外露出| 奇米影视7777精品一区二区| 欧美国产欧美综合| 欧美不卡一区二区| 欧美视频三区在线播放| 国产成人av网站| 麻豆成人免费电影| 亚州成人在线电影| 中文字幕一区二区三区在线观看| 欧美一级久久久| 欧美亚洲尤物久久| 91免费视频网| 成人免费va视频| 精品一区二区三区在线观看 | 92国产精品观看| 国产精品亚洲人在线观看| 日韩激情一二三区| 亚洲观看高清完整版在线观看| 国产日本欧洲亚洲| 亚洲国产精品传媒在线观看| 精品久久久久久无| 欧美第一区第二区| 精品国产伦一区二区三区观看体验| 欧美日本在线视频| 69av一区二区三区| 91精品在线免费| 日韩一二三区视频| 欧美一区二区播放| 精品精品欲导航| 久久综合国产精品| 中文字幕免费不卡在线| 中文字幕 久热精品 视频在线| 中文无字幕一区二区三区 | 亚洲色图欧洲色图| 亚洲综合一区二区精品导航| 亚洲美女电影在线| 免费欧美在线视频| 成人午夜在线视频| 色狠狠色噜噜噜综合网| 欧美电影影音先锋| 欧美va在线播放| 亚洲人成亚洲人成在线观看图片| 亚洲成人免费在线| 久久99最新地址| 99re视频这里只有精品| 欧美一区二区三区免费| 国产色一区二区| 亚洲va欧美va人人爽午夜| 国产精品综合视频| 欧美中文字幕一区二区三区| 精品成人私密视频| 亚洲卡通动漫在线| 国产精品一区在线观看乱码| 欧美性受极品xxxx喷水| 亚洲国产成人自拍| 精品在线播放午夜| 久久久久高清精品| 国产精品一区三区| 国产精品久久久久久久久免费丝袜| 国产夫妻精品视频| 99在线热播精品免费| 国产亚洲精品久| 91理论电影在线观看| 夜夜嗨av一区二区三区网页| 欧洲一区在线观看| 免费不卡在线观看| 日本一区二区免费在线 | 久久无码av三级| 成人av在线电影| 亚洲成人免费视频| 久久夜色精品国产噜噜av| 国产精品18久久久| 亚洲丝袜制服诱惑| 91精品国产综合久久精品app| 美日韩一级片在线观看| 国产精品看片你懂得| 欧美亚洲一区三区| 久久国产婷婷国产香蕉| 国产喷白浆一区二区三区|