stl_stack.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:3k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  *
  15.  * Copyright (c) 1996,1997
  16.  * Silicon Graphics Computer Systems, Inc.
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Silicon Graphics makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  */
  26. /* NOTE: This is an internal header file, included by other STL headers.
  27.  *   You should not attempt to use it directly.
  28.  */
  29. #ifndef __SGI_STL_INTERNAL_STACK_H
  30. #define __SGI_STL_INTERNAL_STACK_H
  31. __STL_BEGIN_NAMESPACE
  32. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  33. template <class _T, class _Sequence = deque<_T> >
  34. #else
  35. template <class _T, class _Sequence>
  36. #endif
  37. class stack {
  38.   friend bool operator== __STL_NULL_TMPL_ARGS (const stack&, const stack&);
  39.   friend bool operator< __STL_NULL_TMPL_ARGS (const stack&, const stack&);
  40. public:
  41.   typedef typename _Sequence::value_type      value_type;
  42.   typedef typename _Sequence::size_type       size_type;
  43.   typedef          _Sequence                  container_type;
  44.   typedef typename _Sequence::reference       reference;
  45.   typedef typename _Sequence::const_reference const_reference;
  46. protected:
  47.   _Sequence _M_c;
  48. public:
  49.   stack() : _M_c() {}
  50.   explicit stack(const _Sequence& __s) : _M_c(__s) {}
  51.   bool empty() const { return _M_c.empty(); }
  52.   size_type size() const { return _M_c.size(); }
  53.   reference top() { return _M_c.back(); }
  54.   const_reference top() const { return _M_c.back(); }
  55.   void push(const value_type& __x) { _M_c.push_back(__x); }
  56.   void pop() { _M_c.pop_back(); }
  57. };
  58. template <class _T, class _Seq>
  59. bool operator==(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  60. {
  61.   return __x._M_c == __y._M_c;
  62. }
  63. template <class _T, class _Seq>
  64. bool operator<(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  65. {
  66.   return __x._M_c < __y._M_c;
  67. }
  68. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  69. template <class _T, class _Seq>
  70. bool operator!=(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  71. {
  72.   return !(__x == __y);
  73. }
  74. template <class _T, class _Seq>
  75. bool operator>(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  76. {
  77.   return __y < __x;
  78. }
  79. template <class _T, class _Seq>
  80. bool operator<=(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  81. {
  82.   return !(__y < __x);
  83. }
  84. template <class _T, class _Seq>
  85. bool operator>=(const stack<_T,_Seq>& __x, const stack<_T,_Seq>& __y)
  86. {
  87.   return !(__x < __y);
  88. }
  89. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  90. __STL_END_NAMESPACE
  91. #endif /* __SGI_STL_INTERNAL_STACK_H */
  92. // Local Variables:
  93. // mode:C++
  94. // End: