stl_stac.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:4k
源码类别:

STL

开发平台:

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. #include <sequence_concepts.h>
  32. __STL_BEGIN_NAMESPACE
  33. // Forward declarations of operators == and <, needed for friend declaration.
  34. template <class _Tp, 
  35.           class _Sequence __STL_DEPENDENT_DEFAULT_TMPL(deque<_Tp>) >
  36. class stack;
  37. template <class _Tp, class _Seq>
  38. bool operator==(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y);
  39. template <class _Tp, class _Seq>
  40. bool operator<(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y);
  41. template <class _Tp, class _Sequence>
  42. class stack {
  43.   // requirements:
  44.   __STL_CLASS_REQUIRES(_Tp, _Assignable);
  45.   __STL_CLASS_REQUIRES(_Sequence, _BackInsertionSequence);
  46.   typedef typename _Sequence::value_type _Sequence_value_type;
  47.   __STL_CLASS_REQUIRES_SAME_TYPE(_Tp, _Sequence_value_type);
  48. #ifdef __STL_MEMBER_TEMPLATES
  49.   template <class _Tp1, class _Seq1>
  50.   friend bool operator== (const stack<_Tp1, _Seq1>&,
  51.                           const stack<_Tp1, _Seq1>&);
  52.   template <class _Tp1, class _Seq1>
  53.   friend bool operator< (const stack<_Tp1, _Seq1>&,
  54.                          const stack<_Tp1, _Seq1>&);
  55. #else /* __STL_MEMBER_TEMPLATES */
  56.   friend bool __STD_QUALIFIER
  57.   operator== __STL_NULL_TMPL_ARGS (const stack&, const stack&);
  58.   friend bool __STD_QUALIFIER
  59.   operator< __STL_NULL_TMPL_ARGS (const stack&, const stack&);
  60. #endif /* __STL_MEMBER_TEMPLATES */
  61. public:
  62.   typedef typename _Sequence::value_type      value_type;
  63.   typedef typename _Sequence::size_type       size_type;
  64.   typedef          _Sequence                  container_type;
  65.   typedef typename _Sequence::reference       reference;
  66.   typedef typename _Sequence::const_reference const_reference;
  67. protected:
  68.   _Sequence c;
  69. public:
  70.   stack() : c() {}
  71.   explicit stack(const _Sequence& __s) : c(__s) {}
  72.   bool empty() const { return c.empty(); }
  73.   size_type size() const { return c.size(); }
  74.   reference top() { return c.back(); }
  75.   const_reference top() const { return c.back(); }
  76.   void push(const value_type& __x) { c.push_back(__x); }
  77.   void pop() { c.pop_back(); }
  78. };
  79. template <class _Tp, class _Seq>
  80. bool operator==(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  81. {
  82.   return __x.c == __y.c;
  83. }
  84. template <class _Tp, class _Seq>
  85. bool operator<(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  86. {
  87.   return __x.c < __y.c;
  88. }
  89. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  90. template <class _Tp, class _Seq>
  91. bool operator!=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  92. {
  93.   return !(__x == __y);
  94. }
  95. template <class _Tp, class _Seq>
  96. bool operator>(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  97. {
  98.   return __y < __x;
  99. }
  100. template <class _Tp, class _Seq>
  101. bool operator<=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  102. {
  103.   return !(__y < __x);
  104. }
  105. template <class _Tp, class _Seq>
  106. bool operator>=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y)
  107. {
  108.   return !(__x < __y);
  109. }
  110. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  111. __STL_END_NAMESPACE
  112. #endif /* __SGI_STL_INTERNAL_STACK_H */
  113. // Local Variables:
  114. // mode:C++
  115. // End: