stl_stack.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:2k
源码类别:

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. __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 typename Sequence::reference reference;
  44.   typedef typename Sequence::const_reference const_reference;
  45. protected:
  46.   Sequence c;
  47. public:
  48.   bool empty() const { return c.empty(); }
  49.   size_type size() const { return c.size(); }
  50.   reference top() { return c.back(); }
  51.   const_reference top() const { return c.back(); }
  52.   void push(const value_type& x) { c.push_back(x); }
  53.   void pop() { c.pop_back(); }
  54. };
  55. template <class T, class Sequence>
  56. bool operator==(const stack<T, Sequence>& x, const stack<T, Sequence>& y) {
  57.   return x.c == y.c;
  58. }
  59. template <class T, class Sequence>
  60. bool operator<(const stack<T, Sequence>& x, const stack<T, Sequence>& y) {
  61.   return x.c < y.c;
  62. }
  63. __STL_END_NAMESPACE
  64. #endif /* __SGI_STL_INTERNAL_STACK_H */
  65. // Local Variables:
  66. // mode:C++
  67. // End: