home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / stl_queue.h < prev    next >
C/C++ Source or Header  |  1998-03-08  |  4KB  |  135 lines

  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.  
  27. /* NOTE: This is an internal header file, included by other STL headers.
  28.  *   You should not attempt to use it directly.
  29.  */
  30.  
  31. #ifndef __SGI_STL_INTERNAL_QUEUE_H
  32. #define __SGI_STL_INTERNAL_QUEUE_H
  33.  
  34. __STL_BEGIN_NAMESPACE
  35.  
  36. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  37. template <class T, class Sequence = deque<T> >
  38. #else
  39. template <class T, class Sequence>
  40. #endif
  41. class queue {
  42.   friend bool operator== __STL_NULL_TMPL_ARGS (const queue& x, const queue& y);
  43.   friend bool operator< __STL_NULL_TMPL_ARGS (const queue& x, const queue& y);
  44. public:
  45.   typedef typename Sequence::value_type value_type;
  46.   typedef typename Sequence::size_type size_type;
  47.   typedef typename Sequence::reference reference;
  48.   typedef typename Sequence::const_reference const_reference;
  49. protected:
  50.   Sequence c;
  51. public:
  52.   bool empty() const { return c.empty(); }
  53.   size_type size() const { return c.size(); }
  54.   reference front() { return c.front(); }
  55.   const_reference front() const { return c.front(); }
  56.   reference back() { return c.back(); }
  57.   const_reference back() const { return c.back(); }
  58.   void push(const value_type& x) { c.push_back(x); }
  59.   void pop() { c.pop_front(); }
  60. };
  61.  
  62. template <class T, class Sequence>
  63. bool operator==(const queue<T, Sequence>& x, const queue<T, Sequence>& y) {
  64.   return x.c == y.c;
  65. }
  66.  
  67. template <class T, class Sequence>
  68. bool operator<(const queue<T, Sequence>& x, const queue<T, Sequence>& y) {
  69.   return x.c < y.c;
  70. }
  71.  
  72. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  73. template <class T, class Sequence = vector<T>, 
  74.           class Compare = less<typename Sequence::value_type> >
  75. #else
  76. template <class T, class Sequence, class Compare>
  77. #endif
  78. class  priority_queue {
  79. public:
  80.   typedef typename Sequence::value_type value_type;
  81.   typedef typename Sequence::size_type size_type;
  82.   typedef typename Sequence::reference reference;
  83.   typedef typename Sequence::const_reference const_reference;
  84. protected:
  85.   Sequence c;
  86.   Compare comp;
  87. public:
  88.   priority_queue() : c() {}
  89.   explicit priority_queue(const Compare& x) :  c(), comp(x) {}
  90.  
  91. #ifdef __STL_MEMBER_TEMPLATES
  92.   template <class InputIterator>
  93.   priority_queue(InputIterator first, InputIterator last, const Compare& x)
  94.     : c(first, last), comp(x) { make_heap(c.begin(), c.end(), comp); }
  95.   template <class InputIterator>
  96.   priority_queue(InputIterator first, InputIterator last) 
  97.     : c(first, last) { make_heap(c.begin(), c.end(), comp); }
  98. #else /* __STL_MEMBER_TEMPLATES */
  99.   priority_queue(const value_type* first, const value_type* last, 
  100.                  const Compare& x) : c(first, last), comp(x) {
  101.     make_heap(c.begin(), c.end(), comp);
  102.   }
  103.   priority_queue(const value_type* first, const value_type* last) 
  104.     : c(first, last) { make_heap(c.begin(), c.end(), comp); }
  105. #endif /* __STL_MEMBER_TEMPLATES */
  106.  
  107.   bool empty() const { return c.empty(); }
  108.   size_type size() const { return c.size(); }
  109.   const_reference top() const { return c.front(); }
  110.   void push(const value_type& x) {
  111.     __STL_TRY {
  112.       c.push_back(x); 
  113.       push_heap(c.begin(), c.end(), comp);
  114.     }
  115.     __STL_UNWIND(c.clear());
  116.   }
  117.   void pop() {
  118.     __STL_TRY {
  119.       pop_heap(c.begin(), c.end(), comp);
  120.       c.pop_back();
  121.     }
  122.     __STL_UNWIND(c.clear());
  123.   }
  124. };
  125.  
  126. // no equality is provided
  127.  
  128. __STL_END_NAMESPACE
  129.  
  130. #endif /* __SGI_STL_INTERNAL_QUEUE_H */
  131.  
  132. // Local Variables:
  133. // mode:C++
  134. // End:
  135.