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

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

?? stl_multiset.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 * 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_MULTISET_H#define __SGI_STL_INTERNAL_MULTISET_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 operators < and ==, needed for friend declaration.template <class _Key, class _Compare __STL_DEPENDENT_DEFAULT_TMPL(less<_Key>),          class _Alloc = __STL_DEFAULT_ALLOCATOR(_Key) >class multiset;template <class _Key, class _Compare, class _Alloc>inline bool operator==(const multiset<_Key,_Compare,_Alloc>& __x,                        const multiset<_Key,_Compare,_Alloc>& __y);template <class _Key, class _Compare, class _Alloc>inline bool operator<(const multiset<_Key,_Compare,_Alloc>& __x,                       const multiset<_Key,_Compare,_Alloc>& __y);template <class _Key, class _Compare, class _Alloc>class multiset {  // requirements:    __STL_CLASS_REQUIRES(_Key, _Assignable);  __STL_CLASS_BINARY_FUNCTION_CHECK(_Compare, bool, _Key, _Key);public:  // typedefs:  typedef _Key     key_type;  typedef _Key     value_type;  typedef _Compare key_compare;  typedef _Compare value_compare;private:  typedef _Rb_tree<key_type, value_type,                   _Identity<value_type>, key_compare, _Alloc> _Rep_type;  _Rep_type _M_t;  // red-black tree representing multisetpublic:  typedef typename _Rep_type::const_pointer pointer;  typedef typename _Rep_type::const_pointer const_pointer;  typedef typename _Rep_type::const_reference reference;  typedef typename _Rep_type::const_reference const_reference;  typedef typename _Rep_type::const_iterator iterator;  typedef typename _Rep_type::const_iterator const_iterator;  typedef typename _Rep_type::const_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  multiset() : _M_t(_Compare(), allocator_type()) {}  explicit multiset(const _Compare& __comp,                    const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) {}#ifdef __STL_MEMBER_TEMPLATES  template <class _InputIterator>  multiset(_InputIterator __first, _InputIterator __last)    : _M_t(_Compare(), allocator_type())    { _M_t.insert_equal(__first, __last); }  template <class _InputIterator>  multiset(_InputIterator __first, _InputIterator __last,           const _Compare& __comp,           const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }#else  multiset(const value_type* __first, const value_type* __last)    : _M_t(_Compare(), allocator_type())    { _M_t.insert_equal(__first, __last); }  multiset(const value_type* __first, const value_type* __last,           const _Compare& __comp,           const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }  multiset(const_iterator __first, const_iterator __last)    : _M_t(_Compare(), allocator_type())    { _M_t.insert_equal(__first, __last); }  multiset(const_iterator __first, const_iterator __last,           const _Compare& __comp,           const allocator_type& __a = allocator_type())    : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }   #endif /* __STL_MEMBER_TEMPLATES */  multiset(const multiset<_Key,_Compare,_Alloc>& __x) : _M_t(__x._M_t) {}  multiset<_Key,_Compare,_Alloc>&  operator=(const multiset<_Key,_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 _M_t.key_comp(); }  allocator_type get_allocator() const { return _M_t.get_allocator(); }  iterator begin() const { return _M_t.begin(); }  iterator end() const { return _M_t.end(); }  reverse_iterator rbegin() const { return _M_t.rbegin(); }   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(); }  void swap(multiset<_Key,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }  // insert/erase  iterator insert(const value_type& __x) {     return _M_t.insert_equal(__x);  }  iterator insert(iterator __position, const value_type& __x) {    typedef typename _Rep_type::iterator _Rep_iterator;    return _M_t.insert_equal((_Rep_iterator&)__position, __x);  }#ifdef __STL_MEMBER_TEMPLATES    template <class _InputIterator>  void insert(_InputIterator __first, _InputIterator __last) {    _M_t.insert_equal(__first, __last);  }#else  void insert(const value_type* __first, const value_type* __last) {    _M_t.insert_equal(__first, __last);  }  void insert(const_iterator __first, const_iterator __last) {    _M_t.insert_equal(__first, __last);  }#endif /* __STL_MEMBER_TEMPLATES */  void erase(iterator __position) {     typedef typename _Rep_type::iterator _Rep_iterator;    _M_t.erase((_Rep_iterator&)__position);   }  size_type erase(const key_type& __x) {     return _M_t.erase(__x);   }  void erase(iterator __first, iterator __last) {     typedef typename _Rep_type::iterator _Rep_iterator;    _M_t.erase((_Rep_iterator&)__first, (_Rep_iterator&)__last);   }  void clear() { _M_t.clear(); }  // multiset operations:  iterator find(const key_type& __x) const { return _M_t.find(__x); }  size_type count(const key_type& __x) const { return _M_t.count(__x); }  iterator lower_bound(const key_type& __x) const {    return _M_t.lower_bound(__x);  }  iterator upper_bound(const key_type& __x) const {    return _M_t.upper_bound(__x);   }  pair<iterator,iterator> equal_range(const key_type& __x) const {    return _M_t.equal_range(__x);  }#ifdef __STL_TEMPLATE_FRIENDS  template <class _K1, class _C1, class _A1>  friend bool operator== (const multiset<_K1,_C1,_A1>&,                          const multiset<_K1,_C1,_A1>&);  template <class _K1, class _C1, class _A1>  friend bool operator< (const multiset<_K1,_C1,_A1>&,                         const multiset<_K1,_C1,_A1>&);#else /* __STL_TEMPLATE_FRIENDS */  friend bool __STD_QUALIFIER  operator== __STL_NULL_TMPL_ARGS (const multiset&, const multiset&);  friend bool __STD_QUALIFIER  operator< __STL_NULL_TMPL_ARGS (const multiset&, const multiset&);#endif /* __STL_TEMPLATE_FRIENDS */};template <class _Key, class _Compare, class _Alloc>inline bool operator==(const multiset<_Key,_Compare,_Alloc>& __x,                        const multiset<_Key,_Compare,_Alloc>& __y) {  return __x._M_t == __y._M_t;}template <class _Key, class _Compare, class _Alloc>inline bool operator<(const multiset<_Key,_Compare,_Alloc>& __x,                       const multiset<_Key,_Compare,_Alloc>& __y) {  return __x._M_t < __y._M_t;}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _Key, class _Compare, class _Alloc>inline bool operator!=(const multiset<_Key,_Compare,_Alloc>& __x,                        const multiset<_Key,_Compare,_Alloc>& __y) {  return !(__x == __y);}template <class _Key, class _Compare, class _Alloc>inline bool operator>(const multiset<_Key,_Compare,_Alloc>& __x,                       const multiset<_Key,_Compare,_Alloc>& __y) {  return __y < __x;}template <class _Key, class _Compare, class _Alloc>inline bool operator<=(const multiset<_Key,_Compare,_Alloc>& __x,                        const multiset<_Key,_Compare,_Alloc>& __y) {  return !(__y < __x);}template <class _Key, class _Compare, class _Alloc>inline bool operator>=(const multiset<_Key,_Compare,_Alloc>& __x,                        const multiset<_Key,_Compare,_Alloc>& __y) {  return !(__x < __y);}template <class _Key, class _Compare, class _Alloc>inline void swap(multiset<_Key,_Compare,_Alloc>& __x,                  multiset<_Key,_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_MULTISET_H */// Local Variables:// mode:C++// End:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲高清免费在线| 激情图片小说一区| 精品国产123| 在线免费观看日本一区| 蜜桃久久精品一区二区| 自拍视频在线观看一区二区| 67194成人在线观看| 国产东北露脸精品视频| 日韩成人午夜精品| 亚洲男人电影天堂| 久久人人97超碰com| 欧美日韩精品欧美日韩精品一| 成人亚洲一区二区一| 偷窥国产亚洲免费视频| 久久机这里只有精品| 亚洲人成人一区二区在线观看| 日韩欧美中文字幕制服| 欧美视频一区二区三区四区| 丁香亚洲综合激情啪啪综合| 免费观看在线色综合| 亚洲一区二区欧美日韩| 1000精品久久久久久久久| 久久久久久黄色| 精品少妇一区二区三区免费观看 | 国产亚洲精品久| 91精选在线观看| 欧洲一区在线电影| 91亚洲国产成人精品一区二区三 | 国产在线不卡一卡二卡三卡四卡| 亚洲影视在线观看| 亚洲欧美激情视频在线观看一区二区三区 | 337p粉嫩大胆色噜噜噜噜亚洲| 欧美日韩精品二区第二页| 在线一区二区三区四区| 99久久精品99国产精品| 不卡视频免费播放| 成人国产精品免费网站| 粉嫩av一区二区三区粉嫩| 国产老女人精品毛片久久| 久久黄色级2电影| 美脚の诱脚舐め脚责91 | 裸体在线国模精品偷拍| 三级影片在线观看欧美日韩一区二区| 亚洲男人的天堂一区二区| 国产精品久久久久aaaa樱花| 国产欧美日韩综合| 中文字幕成人av| 国产精品嫩草影院com| 国产丝袜在线精品| 国产精品久久久久精k8| 亚洲嫩草精品久久| 一区二区三区精品在线观看| 亚洲一区二区av电影| 日韩激情中文字幕| 久久黄色级2电影| 国产精品一区二区x88av| 丰满白嫩尤物一区二区| 99久久精品免费看国产| 色婷婷精品久久二区二区蜜臀av| 欧美专区日韩专区| 日韩一区二区三区四区| 精品国产乱码久久久久久免费 | 91精品国产综合久久久久久| 欧美一区二区三区免费| 久久精品久久久精品美女| 亚洲精品v日韩精品| 欧美男男青年gay1069videost| 国产成人午夜片在线观看高清观看| 国产精品69久久久久水密桃 | 一本久久a久久精品亚洲| 91国产丝袜在线播放| 欧美老肥妇做.爰bbww视频| 欧美大黄免费观看| 国产精品国产三级国产普通话三级 | 国产成人丝袜美腿| 91色乱码一区二区三区| 欧美人动与zoxxxx乱| 精品欧美乱码久久久久久| 欧美极品少妇xxxxⅹ高跟鞋| 依依成人综合视频| 精品在线你懂的| 色8久久精品久久久久久蜜| 欧美精品日韩综合在线| 国产欧美一区二区在线观看| 日av在线不卡| 91视频一区二区三区| 91麻豆精品在线观看| 欧洲av一区二区嗯嗯嗯啊| 91无套直看片红桃| 欧美偷拍一区二区| 久久综合久久鬼色中文字| 一区二区三区中文字幕电影| 欧美aaa在线| 99精品热视频| 日韩欧美色综合网站| 亚洲精品自拍动漫在线| 美女网站在线免费欧美精品| 一本久道中文字幕精品亚洲嫩| 日韩精品资源二区在线| 亚洲一二三四区不卡| 国内成人精品2018免费看| 欧美特级限制片免费在线观看| 精品国产亚洲一区二区三区在线观看| 亚洲免费观看高清| 国产精品资源站在线| 欧美一卡2卡3卡4卡| 一区二区三区四区国产精品| 韩国三级在线一区| 欧美日韩国产综合久久| 久久精品欧美一区二区三区不卡| 亚洲女性喷水在线观看一区| 精品久久久久久久人人人人传媒| 精品国产一区二区三区四区四| 亚洲精品成人在线| 国产精品一二三在| 日韩欧美高清一区| 天堂精品中文字幕在线| 色综合久久综合中文综合网| 国产欧美精品国产国产专区| 久久精品久久精品| 欧美一二三在线| 午夜电影网一区| 日本韩国欧美三级| 1024精品合集| av在线综合网| 国产精品久久看| 国产精品 日产精品 欧美精品| 欧美大肚乱孕交hd孕妇| 日韩成人一区二区| 欧美日韩国产在线观看| 亚瑟在线精品视频| 日韩三级在线观看| 日韩高清欧美激情| 欧美精品日韩精品| 日本中文字幕一区二区视频 | 色哟哟精品一区| 亚洲欧洲精品天堂一级| 9i在线看片成人免费| 国产精品久久久久久一区二区三区 | 欧美日韩国产另类一区| 亚洲成人免费在线| 欧美久久久一区| 免费高清在线一区| 日韩精品影音先锋| 国产精品一区二区免费不卡| 精品国产污网站| 国产一区二区导航在线播放| 久久女同互慰一区二区三区| 国产自产高清不卡| 国产三级欧美三级| 成人动漫在线一区| 亚洲色图在线视频| 欧美在线一区二区| 视频精品一区二区| 欧美mv和日韩mv的网站| 国产成人亚洲综合a∨猫咪| 亚洲国产精品黑人久久久| 成人av资源站| 亚洲一区影音先锋| 欧美久久高跟鞋激| 国产资源精品在线观看| 中文字幕一区二区在线播放| 91在线视频播放| 亚洲r级在线视频| 欧美大黄免费观看| 成人免费视频网站在线观看| 一区二区三区在线看| 欧美日韩一区国产| 国产综合色视频| 综合久久国产九一剧情麻豆| 欧美三级电影在线观看| 蜜桃视频一区二区三区在线观看| 国产亚洲欧美在线| 欧美性受xxxx黑人xyx| 久久精品国产亚洲a| 国产精品美女久久久久久久| 欧美日韩一区二区三区在线看| 久久国产精品99久久久久久老狼| 国产校园另类小说区| 色噜噜偷拍精品综合在线| 麻豆91在线观看| 亚洲三级电影全部在线观看高清| 88在线观看91蜜桃国自产| 国产大陆a不卡| 亚洲成a人片在线观看中文| 国产午夜亚洲精品不卡| 欧美日韩精品一区二区三区蜜桃 | 欧美xxx久久| 高清av一区二区| 亚洲国产一区二区a毛片| 久久人人97超碰com| 91成人在线精品| 国产一区 二区 三区一级| 亚洲一区视频在线观看视频| 26uuuu精品一区二区| 欧美在线免费视屏| 国产精品一级黄| 日本欧美韩国一区三区| 亚洲日本中文字幕区| 久久久精品天堂|