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

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

?? stl_map.h

?? STL的源代碼
?? H
字號:
/* * * 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. * * * Copyright (c) 1996,1997 * 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. *//* NOTE: This is an internal header file, included by other STL headers. *   You should not attempt to use it directly. */#ifndef __SGI_STL_INTERNAL_MAP_H#define __SGI_STL_INTERNAL_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 declarations of operators == and <, needed for friend declarations.template <class _Key, class _Tp,           class _Compare __STL_DEPENDENT_DEFAULT_TMPL(less<_Key>),          class _Alloc = __STL_DEFAULT_ALLOCATOR(_Tp) >class map;template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator==(const map<_Key,_Tp,_Compare,_Alloc>& __x,                        const map<_Key,_Tp,_Compare,_Alloc>& __y);template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator<(const map<_Key,_Tp,_Compare,_Alloc>& __x,                       const map<_Key,_Tp,_Compare,_Alloc>& __y);template <class _Key, class _Tp, class _Compare, class _Alloc>class map {public:// requirements:  __STL_CLASS_REQUIRES(_Tp, _Assignable);  __STL_CLASS_BINARY_FUNCTION_CHECK(_Compare, bool, _Key, _Key);// typedefs:  typedef _Key                  key_type;  typedef _Tp                   data_type;  typedef _Tp                   mapped_type;  typedef pair<const _Key, _Tp> value_type;  typedef _Compare              key_compare;      class value_compare    : public binary_function<value_type, value_type, bool> {  friend class map<_Key,_Tp,_Compare,_Alloc>;  protected :    _Compare comp;    value_compare(_Compare __c) : comp(__c) {}  public:    bool operator()(const value_type& __x, const value_type& __y) const {      return comp(__x.first, __y.first);    }  };private:  typedef _Rb_tree<key_type, value_type,                    _Select1st<value_type>, key_compare, _Alloc> _Rep_type;  _Rep_type _M_t;  // red-black tree representing mappublic:  typedef typename _Rep_type::pointer pointer;  typedef typename _Rep_type::const_pointer const_pointer;  typedef typename _Rep_type::reference reference;  typedef typename _Rep_type::const_reference const_reference;  typedef typename _Rep_type::iterator iterator;  typedef typename _Rep_type::const_iterator const_iterator;  typedef typename _Rep_type::reverse_iterator reverse_iterator;  typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;  typedef typename _Rep_type::size_type size_type;  typedef typename _Rep_type::difference_type difference_type;  typedef typename _Rep_type::allocator_type allocator_type;  // allocation/deallocation  map() : _M_t(_Compare(), allocator_type()) {}  explicit map(const _Compare& __comp,               const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) {}#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  map(_InputIterator __first, _InputIterator __last)    : _M_t(_Compare(), allocator_type())    { _M_t.insert_unique(__first, __last); }  template <class _InputIterator>  map(_InputIterator __first, _InputIterator __last, const _Compare& __comp,      const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }#else  map(const value_type* __first, const value_type* __last)    : _M_t(_Compare(), allocator_type())    { _M_t.insert_unique(__first, __last); }  map(const value_type* __first,      const value_type* __last, const _Compare& __comp,      const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }  map(const_iterator __first, const_iterator __last)    : _M_t(_Compare(), allocator_type())     { _M_t.insert_unique(__first, __last); }  map(const_iterator __first, const_iterator __last, const _Compare& __comp,      const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }#endif /* __STL_MEMBER_TEMPLATES */  map(const map<_Key,_Tp,_Compare,_Alloc>& __x) : _M_t(__x._M_t) {}  map<_Key,_Tp,_Compare,_Alloc>&  operator=(const map<_Key, _Tp, _Compare, _Alloc>& __x)  {    _M_t = __x._M_t;    return *this;   }  // accessors:  key_compare key_comp() const { return _M_t.key_comp(); }  value_compare value_comp() const { return value_compare(_M_t.key_comp()); }  allocator_type get_allocator() const { return _M_t.get_allocator(); }  iterator begin() { return _M_t.begin(); }  const_iterator begin() const { return _M_t.begin(); }  iterator end() { return _M_t.end(); }  const_iterator end() const { return _M_t.end(); }  reverse_iterator rbegin() { return _M_t.rbegin(); }  const_reverse_iterator rbegin() const { return _M_t.rbegin(); }  reverse_iterator rend() { return _M_t.rend(); }  const_reverse_iterator rend() const { return _M_t.rend(); }  bool empty() const { return _M_t.empty(); }  size_type size() const { return _M_t.size(); }  size_type max_size() const { return _M_t.max_size(); }  _Tp& operator[](const key_type& __k) {    iterator __i = lower_bound(__k);    // __i->first is greater than or equivalent to __k.    if (__i == end() || key_comp()(__k, (*__i).first))      __i = insert(__i, value_type(__k, _Tp()));    return (*__i).second;  }  void swap(map<_Key,_Tp,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }  // insert/erase  pair<iterator,bool> insert(const value_type& __x)     { return _M_t.insert_unique(__x); }  iterator insert(iterator position, const value_type& __x)    { return _M_t.insert_unique(position, __x); }#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  void insert(_InputIterator __first, _InputIterator __last) {    _M_t.insert_unique(__first, __last);  }#else  void insert(const value_type* __first, const value_type* __last) {    _M_t.insert_unique(__first, __last);  }  void insert(const_iterator __first, const_iterator __last) {    _M_t.insert_unique(__first, __last);  }#endif /* __STL_MEMBER_TEMPLATES */  void erase(iterator __position) { _M_t.erase(__position); }  size_type erase(const key_type& __x) { return _M_t.erase(__x); }  void erase(iterator __first, iterator __last)    { _M_t.erase(__first, __last); }  void clear() { _M_t.clear(); }  // map operations:  iterator find(const key_type& __x) { return _M_t.find(__x); }  const_iterator find(const key_type& __x) const { return _M_t.find(__x); }  size_type count(const key_type& __x) const {    return _M_t.find(__x) == _M_t.end() ? 0 : 1;   }  iterator lower_bound(const key_type& __x) {return _M_t.lower_bound(__x); }  const_iterator lower_bound(const key_type& __x) const {    return _M_t.lower_bound(__x);   }  iterator upper_bound(const key_type& __x) {return _M_t.upper_bound(__x); }  const_iterator upper_bound(const key_type& __x) const {    return _M_t.upper_bound(__x);   }    pair<iterator,iterator> equal_range(const key_type& __x) {    return _M_t.equal_range(__x);  }  pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {    return _M_t.equal_range(__x);  }#ifdef __STL_TEMPLATE_FRIENDS   template <class _K1, class _T1, class _C1, class _A1>  friend bool operator== (const map<_K1, _T1, _C1, _A1>&,                          const map<_K1, _T1, _C1, _A1>&);  template <class _K1, class _T1, class _C1, class _A1>  friend bool operator< (const map<_K1, _T1, _C1, _A1>&,                         const map<_K1, _T1, _C1, _A1>&);#else /* __STL_TEMPLATE_FRIENDS */  friend bool __STD_QUALIFIER  operator== __STL_NULL_TMPL_ARGS (const map&, const map&);  friend bool __STD_QUALIFIER  operator< __STL_NULL_TMPL_ARGS (const map&, const map&);#endif /* __STL_TEMPLATE_FRIENDS */};template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator==(const map<_Key,_Tp,_Compare,_Alloc>& __x,                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return __x._M_t == __y._M_t;}template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator<(const map<_Key,_Tp,_Compare,_Alloc>& __x,                       const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return __x._M_t < __y._M_t;}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator!=(const map<_Key,_Tp,_Compare,_Alloc>& __x,                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return !(__x == __y);}template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator>(const map<_Key,_Tp,_Compare,_Alloc>& __x,                       const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return __y < __x;}template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator<=(const map<_Key,_Tp,_Compare,_Alloc>& __x,                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return !(__y < __x);}template <class _Key, class _Tp, class _Compare, class _Alloc>inline bool operator>=(const map<_Key,_Tp,_Compare,_Alloc>& __x,                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {  return !(__x < __y);}template <class _Key, class _Tp, class _Compare, class _Alloc>inline void swap(map<_Key,_Tp,_Compare,_Alloc>& __x,                  map<_Key,_Tp,_Compare,_Alloc>& __y) {  __x.swap(__y);}#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */#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_MAP_H */// Local Variables:// mode:C++// End:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人成人一区二区在线观看| 欧美日韩精品免费观看视频| 香蕉加勒比综合久久| 国产精品成人一区二区艾草| 国产精品美女久久久久aⅴ国产馆| 精品免费日韩av| 精品国产电影一区二区| 91精品国产综合久久小美女| 日韩精品专区在线影院重磅| 日韩午夜精品电影| 久久久久久久精| 国产精品视频线看| 亚洲精品美国一| 亚洲猫色日本管| 亚洲第一电影网| 久久国产精品露脸对白| 国产一区在线精品| 色综合久久88色综合天天免费| 欧美日韩在线电影| 欧美一区二区三区免费大片| 久久视频一区二区| 18涩涩午夜精品.www| 亚洲午夜成aⅴ人片| 热久久一区二区| 国产夫妻精品视频| 91在线视频播放地址| 欧美肥妇free| 日本一区二区免费在线| 一区二区三区日韩欧美| 琪琪久久久久日韩精品| 国产成人精品一区二| 色综合久久久久网| 精品久久人人做人人爰| 亚洲视频狠狠干| 欧美aaa在线| aaa亚洲精品| 日韩一卡二卡三卡四卡| 国产精品视频免费| 午夜激情一区二区三区| 成人亚洲一区二区一| 在线不卡的av| 中文字幕亚洲一区二区av在线| 日本欧美一区二区三区| 91首页免费视频| 精品少妇一区二区三区日产乱码| 亚洲三级在线看| 国内精品嫩模私拍在线| 欧美性做爰猛烈叫床潮| 国产日韩在线不卡| 免费日本视频一区| 日本精品裸体写真集在线观看 | 亚洲在线视频免费观看| 久久国产欧美日韩精品| 欧美中文字幕亚洲一区二区va在线| 欧美成人乱码一区二区三区| 亚洲国产一区二区视频| 懂色av一区二区三区免费看| 欧美一级日韩免费不卡| 亚洲制服丝袜av| 色综合 综合色| 综合久久一区二区三区| 国产精品99久久久久| 精品少妇一区二区三区日产乱码 | 亚洲欧美电影一区二区| 国产精品影音先锋| 精品国产91洋老外米糕| 丝袜亚洲另类丝袜在线| 欧美中文一区二区三区| 亚洲欧美欧美一区二区三区| 成人美女视频在线观看| 亚洲国产电影在线观看| 国产 日韩 欧美大片| 久久久电影一区二区三区| 韩国毛片一区二区三区| 欧美一级片免费看| 麻豆精品一二三| 精品奇米国产一区二区三区| 久久精品72免费观看| 欧美成人一级视频| 国产一区二区三区香蕉| 久久品道一品道久久精品| 国产一区二区美女| 国产人久久人人人人爽| 高清国产午夜精品久久久久久| 国产亚洲一区二区三区四区 | 中文字幕在线一区二区三区| eeuss影院一区二区三区| 成人免费小视频| 欧美午夜宅男影院| 蜜臀av在线播放一区二区三区| 日韩一区二区三区四区| 久久爱另类一区二区小说| 久久精品一区二区三区不卡牛牛| 国产精品系列在线播放| 国产精品国产三级国产aⅴ原创| 99国产精品视频免费观看| 亚洲一级二级三级在线免费观看| 678五月天丁香亚洲综合网| 日本系列欧美系列| 国产亚洲欧美色| 色婷婷久久久亚洲一区二区三区| 婷婷丁香激情综合| 337p粉嫩大胆色噜噜噜噜亚洲| 成人三级在线视频| 亚洲国产精品久久久久婷婷884| 日韩视频一区二区三区| 懂色av一区二区在线播放| 亚洲午夜激情av| 久久精品综合网| 欧美群妇大交群的观看方式| 精品一区二区国语对白| 中文字幕一区二区三区在线不卡 | 精品三级在线看| av一区二区三区黑人| 日韩电影在线观看网站| 国产精品久久久久久妇女6080| 宅男噜噜噜66一区二区66| 国产在线精品一区二区不卡了 | 日韩三级高清在线| 99re视频精品| 国内精品第一页| 亚洲成av人片在线观看无码| 国产欧美精品一区| 欧美三级欧美一级| 99久久精品费精品国产一区二区| 美女被吸乳得到大胸91| 亚洲欧美日韩电影| 国产欧美日韩不卡| 91精品国产综合久久婷婷香蕉 | 三级欧美在线一区| 国产精品色一区二区三区| 日韩精品资源二区在线| 欧美日韩不卡一区| 99精品久久久久久| 国产99精品国产| 久久精品国产亚洲高清剧情介绍| 亚洲一区二区视频| 中文字幕中文字幕在线一区| 久久久不卡影院| 亚洲精品一区二区在线观看| 欧美一三区三区四区免费在线看 | 天天操天天色综合| 国产精品白丝在线| 国产欧美精品区一区二区三区| 精品伦理精品一区| 日韩一级完整毛片| 欧美日本一道本| 制服丝袜在线91| 欧美日韩第一区日日骚| 欧美中文字幕一区| 欧美日韩中文一区| 在线视频综合导航| 欧美亚洲国产一区在线观看网站| 一本久道久久综合中文字幕| 91国在线观看| 欧美日韩精品一区二区三区蜜桃| 在线一区二区三区四区五区| 91成人免费在线| 在线播放91灌醉迷j高跟美女 | 国产精品色呦呦| 亚洲色图一区二区三区| 亚洲天堂中文字幕| 一区二区三区电影在线播| 一区二区三区日韩欧美| 午夜国产不卡在线观看视频| 午夜精品福利一区二区三区av| 蜜乳av一区二区| 国产成人日日夜夜| 91女厕偷拍女厕偷拍高清| 在线一区二区视频| 日韩亚洲欧美综合| 国产欧美一区二区精品仙草咪| 国产精品无遮挡| 夜夜亚洲天天久久| 免费美女久久99| 国产精品1区二区.| 91麻豆国产自产在线观看| 欧美猛男超大videosgay| 欧美一级精品大片| 欧美国产精品一区二区| 亚洲一区影音先锋| 狠狠色2019综合网| 成人免费视频网站在线观看| 欧美午夜精品免费| 26uuu国产日韩综合| 成人欧美一区二区三区白人 | a级精品国产片在线观看| 91黄视频在线观看| 久久久久国产精品麻豆ai换脸 | 欧美一级精品在线| 国产精品成人网| 日韩va欧美va亚洲va久久| 成人性生交大片免费看在线播放 | 亚洲精品在线三区| 亚洲欧美日韩人成在线播放| 看片网站欧美日韩| 91麻豆精品视频| 欧美极品aⅴ影院| 免费观看在线色综合| 99久久国产免费看|