⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stl_iterator.h

📁 STL 最新源代码
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * * 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-1998 * 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_ITERATOR_H#define __SGI_STL_INTERNAL_ITERATOR_H__STL_BEGIN_NAMESPACEtemplate <class _Container>class back_insert_iterator {protected:  _Container* container;public:  typedef _Container          container_type;  typedef output_iterator_tag iterator_category;  typedef void                value_type;  typedef void                difference_type;  typedef void                pointer;  typedef void                reference;  explicit back_insert_iterator(_Container& __x) : container(&__x) {}  back_insert_iterator<_Container>&  operator=(const typename _Container::value_type& __value) {     container->push_back(__value);    return *this;  }  back_insert_iterator<_Container>& operator*() { return *this; }  back_insert_iterator<_Container>& operator++() { return *this; }  back_insert_iterator<_Container>& operator++(int) { return *this; }};#ifndef __STL_CLASS_PARTIAL_SPECIALIZATIONtemplate <class _Container>inline output_iterator_tagiterator_category(const back_insert_iterator<_Container>&){  return output_iterator_tag();}#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */template <class _Container>inline back_insert_iterator<_Container> back_inserter(_Container& __x) {  return back_insert_iterator<_Container>(__x);}template <class _Container>class front_insert_iterator {protected:  _Container* container;public:  typedef _Container          container_type;  typedef output_iterator_tag iterator_category;  typedef void                value_type;  typedef void                difference_type;  typedef void                pointer;  typedef void                reference;  explicit front_insert_iterator(_Container& __x) : container(&__x) {}  front_insert_iterator<_Container>&  operator=(const typename _Container::value_type& __value) {     container->push_front(__value);    return *this;  }  front_insert_iterator<_Container>& operator*() { return *this; }  front_insert_iterator<_Container>& operator++() { return *this; }  front_insert_iterator<_Container>& operator++(int) { return *this; }};#ifndef __STL_CLASS_PARTIAL_SPECIALIZATIONtemplate <class _Container>inline output_iterator_tagiterator_category(const front_insert_iterator<_Container>&){  return output_iterator_tag();}#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */template <class _Container>inline front_insert_iterator<_Container> front_inserter(_Container& __x) {  return front_insert_iterator<_Container>(__x);}template <class _Container>class insert_iterator {protected:  _Container* container;  typename _Container::iterator iter;public:  typedef _Container          container_type;  typedef output_iterator_tag iterator_category;  typedef void                value_type;  typedef void                difference_type;  typedef void                pointer;  typedef void                reference;  insert_iterator(_Container& __x, typename _Container::iterator __i)     : container(&__x), iter(__i) {}  insert_iterator<_Container>&  operator=(const typename _Container::value_type& __value) {     iter = container->insert(iter, __value);    ++iter;    return *this;  }  insert_iterator<_Container>& operator*() { return *this; }  insert_iterator<_Container>& operator++() { return *this; }  insert_iterator<_Container>& operator++(int) { return *this; }};#ifndef __STL_CLASS_PARTIAL_SPECIALIZATIONtemplate <class _Container>inline output_iterator_tagiterator_category(const insert_iterator<_Container>&){  return output_iterator_tag();}#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */template <class _Container, class _Iterator>inline insert_iterator<_Container> inserter(_Container& __x, _Iterator __i){  typedef typename _Container::iterator __iter;  return insert_iterator<_Container>(__x, __iter(__i));}#ifndef __STL_LIMITED_DEFAULT_TEMPLATEStemplate <class _BidirectionalIterator, class _Tp, class _Reference = _Tp&,           class _Distance = ptrdiff_t> #elsetemplate <class _BidirectionalIterator, class _Tp, class _Reference,           class _Distance> #endifclass reverse_bidirectional_iterator {  typedef reverse_bidirectional_iterator<_BidirectionalIterator, _Tp,                                          _Reference, _Distance>  _Self;protected:  _BidirectionalIterator current;public:  typedef bidirectional_iterator_tag iterator_category;  typedef _Tp                        value_type;  typedef _Distance                  difference_type;  typedef _Tp*                       pointer;  typedef _Reference                 reference;  reverse_bidirectional_iterator() {}  explicit reverse_bidirectional_iterator(_BidirectionalIterator __x)    : current(__x) {}  _BidirectionalIterator base() const { return current; }  _Reference operator*() const {    _BidirectionalIterator __tmp = current;    return *--__tmp;  }#ifndef __SGI_STL_NO_ARROW_OPERATOR  pointer operator->() const { return &(operator*()); }#endif /* __SGI_STL_NO_ARROW_OPERATOR */  _Self& operator++() {    --current;    return *this;  }  _Self operator++(int) {    _Self __tmp = *this;    --current;    return __tmp;  }  _Self& operator--() {    ++current;    return *this;  }  _Self operator--(int) {    _Self __tmp = *this;    ++current;    return __tmp;  }};#ifndef __STL_CLASS_PARTIAL_SPECIALIZATIONtemplate <class _BidirectionalIterator, class _Tp, class _Reference,           class _Distance>inline bidirectional_iterator_tagiterator_category(const reverse_bidirectional_iterator<_BidirectionalIterator,                                                       _Tp, _Reference,                                                        _Distance>&) {  return bidirectional_iterator_tag();}template <class _BidirectionalIterator, class _Tp, class _Reference,           class _Distance>inline _Tp*value_type(const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp,                                               _Reference, _Distance>&){  return (_Tp*) 0;}template <class _BidirectionalIterator, class _Tp, class _Reference,           class _Distance>inline _Distance*distance_type(const reverse_bidirectional_iterator<_BidirectionalIterator,                                                    _Tp,                                                   _Reference, _Distance>&){  return (_Distance*) 0;}#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */template <class _BiIter, class _Tp, class _Ref, class _Distance>inline bool operator==(    const reverse_bidirectional_iterator<_BiIter, _Tp, _Ref, _Distance>& __x,     const reverse_bidirectional_iterator<_BiIter, _Tp, _Ref, _Distance>& __y){  return __x.base() == __y.base();}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _BiIter, class _Tp, class _Ref, class _Distance>inline bool operator!=(    const reverse_bidirectional_iterator<_BiIter, _Tp, _Ref, _Distance>& __x,     const reverse_bidirectional_iterator<_BiIter, _Tp, _Ref, _Distance>& __y){  return !(__x == __y);}#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */#ifdef __STL_CLASS_PARTIAL_SPECIALIZATION// This is the new version of reverse_iterator, as defined in the//  draft C++ standard.  It relies on the iterator_traits template,//  which in turn relies on partial specialization.  The class//  reverse_bidirectional_iterator is no longer part of the draft//  standard, but it is retained for backward compatibility.template <class _Iterator>class reverse_iterator {protected:  _Iterator current;public:  typedef typename iterator_traits<_Iterator>::iterator_category          iterator_category;  typedef typename iterator_traits<_Iterator>::value_type          value_type;  typedef typename iterator_traits<_Iterator>::difference_type          difference_type;  typedef typename iterator_traits<_Iterator>::pointer          pointer;  typedef typename iterator_traits<_Iterator>::reference          reference;  typedef _Iterator iterator_type;  typedef reverse_iterator<_Iterator> _Self;public:  reverse_iterator() {}  explicit reverse_iterator(iterator_type __x) : current(__x) {}  reverse_iterator(const _Self& __x) : current(__x.current) {}#ifdef __STL_MEMBER_TEMPLATES  template <class _Iter>  reverse_iterator(const reverse_iterator<_Iter>& __x)    : current(__x.base()) {}#endif /* __STL_MEMBER_TEMPLATES */      iterator_type base() const { return current; }  reference operator*() const {    _Iterator __tmp = current;    return *--__tmp;  }#ifndef __SGI_STL_NO_ARROW_OPERATOR  pointer operator->() const { return &(operator*()); }#endif /* __SGI_STL_NO_ARROW_OPERATOR */  _Self& operator++() {    --current;    return *this;  }  _Self operator++(int) {    _Self __tmp = *this;    --current;    return __tmp;  }  _Self& operator--() {    ++current;    return *this;  }  _Self operator--(int) {    _Self __tmp = *this;    ++current;    return __tmp;  }  _Self operator+(difference_type __n) const {    return _Self(current - __n);  }  _Self& operator+=(difference_type __n) {    current -= __n;    return *this;  }  _Self operator-(difference_type __n) const {    return _Self(current + __n);  }  _Self& operator-=(difference_type __n) {    current += __n;    return *this;  }  reference operator[](difference_type __n) const { return *(*this + __n); }  };  template <class _Iterator>inline bool operator==(const reverse_iterator<_Iterator>& __x,                        const reverse_iterator<_Iterator>& __y) {  return __x.base() == __y.base();}template <class _Iterator>inline bool operator<(const reverse_iterator<_Iterator>& __x,                       const reverse_iterator<_Iterator>& __y) {  return __y.base() < __x.base();}#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDERtemplate <class _Iterator>inline bool operator!=(const reverse_iterator<_Iterator>& __x,                        const reverse_iterator<_Iterator>& __y) {  return !(__x == __y);}template <class _Iterator>inline bool operator>(const reverse_iterator<_Iterator>& __x,                       const reverse_iterator<_Iterator>& __y) {  return __y < __x;}template <class _Iterator>inline bool operator<=(const reverse_iterator<_Iterator>& __x,                        const reverse_iterator<_Iterator>& __y) {  return !(__y < __x);}template <class _Iterator>inline bool operator>=(const reverse_iterator<_Iterator>& __x,                       const reverse_iterator<_Iterator>& __y) {  return !(__x < __y);}#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */template <class _Iterator>inline typename reverse_iterator<_Iterator>::difference_typeoperator-(const reverse_iterator<_Iterator>& __x,           const reverse_iterator<_Iterator>& __y) {  return __y.base() - __x.base();}template <class _Iterator>inline reverse_iterator<_Iterator> operator+(typename reverse_iterator<_Iterator>::difference_type __n,          const reverse_iterator<_Iterator>& __x) {  return reverse_iterator<_Iterator>(__x.base() - __n);}#else /* __STL_CLASS_PARTIAL_SPECIALIZATION */// This is the old version of reverse_iterator, as found in the original//  HP STL.  It does not use partial specialization.#ifndef __STL_LIMITED_DEFAULT_TEMPLATEStemplate <class _RandomAccessIterator, class _Tp, class _Reference = _Tp&,          class _Distance = ptrdiff_t> #elsetemplate <class _RandomAccessIterator, class _Tp, class _Reference,          class _Distance> #endifclass reverse_iterator {  typedef reverse_iterator<_RandomAccessIterator, _Tp, _Reference, _Distance>        _Self;protected:  _RandomAccessIterator current;public:  typedef random_access_iterator_tag iterator_category;  typedef _Tp                        value_type;  typedef _Distance                  difference_type;  typedef _Tp*                       pointer;  typedef _Reference                 reference;  reverse_iterator() {}  explicit reverse_iterator(_RandomAccessIterator __x) : current(__x) {}  _RandomAccessIterator base() const { return current; }  _Reference operator*() const { return *(current - 1); }#ifndef __SGI_STL_NO_ARROW_OPERATOR  pointer operator->() const { return &(operator*()); }#endif /* __SGI_STL_NO_ARROW_OPERATOR */  _Self& operator++() {    --current;    return *this;  }  _Self operator++(int) {    _Self __tmp = *this;    --current;    return __tmp;  }  _Self& operator--() {    ++current;    return *this;  }  _Self operator--(int) {    _Self __tmp = *this;    ++current;    return __tmp;  }  _Self operator+(_Distance __n) const {    return _Self(current - __n);  }  _Self& operator+=(_Distance __n) {    current -= __n;    return *this;  }  _Self operator-(_Distance __n) const {    return _Self(current + __n);  }  _Self& operator-=(_Distance __n) {    current += __n;    return *this;  }  _Reference operator[](_Distance __n) const { return *(*this + __n); }};template <class _RandomAccessIterator, class _Tp,           class _Reference, class _Distance>inline random_access_iterator_tagiterator_category(const reverse_iterator<_RandomAccessIterator, _Tp,                                         _Reference, _Distance>&){  return random_access_iterator_tag();}template <class _RandomAccessIterator, class _Tp,          class _Reference, class _Distance>inline _Tp* value_type(const reverse_iterator<_RandomAccessIterator, _Tp,                                              _Reference, _Distance>&){  return (_Tp*) 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -