stl_queue.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小: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_QUEUE_H
  30. #define __SGI_STL_INTERNAL_QUEUE_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 queue {
  38.   friend bool operator== __STL_NULL_TMPL_ARGS (const queue& x, const queue& y);
  39.   friend bool operator< __STL_NULL_TMPL_ARGS (const queue& x, const queue& y);
  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 front() { return c.front(); }
  51.   const_reference front() const { return c.front(); }
  52.   reference back() { return c.back(); }
  53.   const_reference back() const { return c.back(); }
  54.   void push(const value_type& x) { c.push_back(x); }
  55.   void pop() { c.pop_front(); }
  56. };
  57. template <class T, class Sequence>
  58. bool operator==(const queue<T, Sequence>& x, const queue<T, Sequence>& y) {
  59.   return x.c == y.c;
  60. }
  61. template <class T, class Sequence>
  62. bool operator<(const queue<T, Sequence>& x, const queue<T, Sequence>& y) {
  63.   return x.c < y.c;
  64. }
  65. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  66. template <class T, class Sequence = vector<T>, 
  67.           class Compare = less<typename Sequence::value_type> >
  68. #else
  69. template <class T, class Sequence, class Compare>
  70. #endif
  71. class  priority_queue {
  72. public:
  73.   typedef typename Sequence::value_type value_type;
  74.   typedef typename Sequence::size_type size_type;
  75.   typedef typename Sequence::reference reference;
  76.   typedef typename Sequence::const_reference const_reference;
  77. protected:
  78.   Sequence c;
  79.   Compare comp;
  80. public:
  81.   priority_queue() : c() {}
  82.   explicit priority_queue(const Compare& x) :  c(), comp(x) {}
  83. #ifdef __STL_MEMBER_TEMPLATES
  84.   template <class InputIterator>
  85.   priority_queue(InputIterator first, InputIterator last, const Compare& x)
  86.     : c(first, last), comp(x) { make_heap(c.begin(), c.end(), comp); }
  87.   template <class InputIterator>
  88.   priority_queue(InputIterator first, InputIterator last) 
  89.     : c(first, last) { make_heap(c.begin(), c.end(), comp); }
  90. #else /* __STL_MEMBER_TEMPLATES */
  91.   priority_queue(const value_type* first, const value_type* last, 
  92.                  const Compare& x) : c(first, last), comp(x) {
  93.     make_heap(c.begin(), c.end(), comp);
  94.   }
  95.   priority_queue(const value_type* first, const value_type* last) 
  96.     : c(first, last) { make_heap(c.begin(), c.end(), comp); }
  97. #endif /* __STL_MEMBER_TEMPLATES */
  98.   bool empty() const { return c.empty(); }
  99.   size_type size() const { return c.size(); }
  100.   const_reference top() const { return c.front(); }
  101.   void push(const value_type& x) {
  102.     __STL_TRY {
  103.       c.push_back(x); 
  104.       push_heap(c.begin(), c.end(), comp);
  105.     }
  106.     __STL_UNWIND(c.clear());
  107.   }
  108.   void pop() {
  109.     __STL_TRY {
  110.       pop_heap(c.begin(), c.end(), comp);
  111.       c.pop_back();
  112.     }
  113.     __STL_UNWIND(c.clear());
  114.   }
  115. };
  116. // no equality is provided
  117. __STL_END_NAMESPACE
  118. #endif /* __SGI_STL_INTERNAL_QUEUE_H */
  119. // Local Variables:
  120. // mode:C++
  121. // End: