// -*- C++ -*- //===--------------------------- queue ------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_QUEUE #define _LIBCPP_QUEUE /* queue synopsis namespace std { template > class queue { public: typedef Container container_type; typedef typename container_type::value_type value_type; typedef typename container_type::reference reference; typedef typename container_type::const_reference const_reference; typedef typename container_type::size_type size_type; protected: container_type c; public: queue(); explicit queue(const container_type& c); explicit queue(container_type&& c); queue(queue&& q); template explicit queue(const Alloc& a); template queue(const container_type& c, const Alloc& a); template queue(container_type&& c, const Alloc& a); template queue(queue&& q, const Alloc& a); queue& operator=(queue&& q); bool empty() const; size_type size() const; reference front(); const_reference front() const; reference back(); const_reference back() const; void push(const value_type& v); void push(value_type&& v); template void emplace(Args&&... args); void pop(); void swap(queue& q); }; template bool operator==(const queue& x,const queue& y); template bool operator< (const queue& x,const queue& y); template bool operator!=(const queue& x,const queue& y); template bool operator> (const queue& x,const queue& y); template bool operator>=(const queue& x,const queue& y); template bool operator<=(const queue& x,const queue& y); template void swap(queue& x, queue& y); template , class Compare = less> class priority_queue { public: typedef Container container_type; typedef typename container_type::value_type value_type; typedef typename container_type::reference reference; typedef typename container_type::const_reference const_reference; typedef typename container_type::size_type size_type; protected: container_type c; Compare comp; public: explicit priority_queue(const Compare& comp = Compare()); priority_queue(const Compare& comp, const container_type& c); explicit priority_queue(const Compare& comp, container_type&& c); template priority_queue(InputIterator first, InputIterator last, const Compare& comp = Compare()); template priority_queue(InputIterator first, InputIterator last, const Compare& comp, const container_type& c); template priority_queue(InputIterator first, InputIterator last, const Compare& comp, container_type&& c); priority_queue(priority_queue&& q); priority_queue& operator=(priority_queue&& q); template explicit priority_queue(const Alloc& a); template priority_queue(const Compare& comp, const Alloc& a); template priority_queue(const Compare& comp, const container_type& c, const Alloc& a); template priority_queue(const Compare& comp, container_type&& c, const Alloc& a); template priority_queue(priority_queue&& q, const Alloc& a); bool empty() const; size_type size() const; const_reference top() const; void push(const value_type& v); void push(value_type&& v); template void emplace(Args&&... args); void pop(); void swap(priority_queue& q); }; template void swap(priority_queue& x, priority_queue& y); } // std */ #include <__config> #include #include #include #include #pragma GCC system_header _LIBCPP_BEGIN_NAMESPACE_STD template class queue; template bool operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); template bool operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); template > class queue { public: typedef _Container container_type; typedef typename container_type::value_type value_type; typedef typename container_type::reference reference; typedef typename container_type::const_reference const_reference; typedef typename container_type::size_type size_type; protected: container_type c; public: queue() : c() {} explicit queue(const container_type& __c) : c(__c) {} #ifdef _LIBCPP_MOVE explicit queue(container_type&& __c) : c(_STD::move(__c)) {} queue(queue&& __q) : c(_STD::move(__q.c)) {} #endif template explicit queue(const _Alloc& __a, typename enable_if::value>::type* = 0) : c(__a) {} template queue(const queue& __q, const _Alloc& __a, typename enable_if::value>::type* = 0) : c(__q.c, __a) {} template queue(const container_type& __c, const _Alloc& __a, typename enable_if::value>::type* = 0) : c(__c, __a) {} #ifdef _LIBCPP_MOVE template queue(container_type&& __c, const _Alloc& __a, typename enable_if::value>::type* = 0) : c(_STD::move(__c), __a) {} template queue(queue&& __q, const _Alloc& __a, typename enable_if::value>::type* = 0) : c(_STD::move(__q.c), __a) {} queue& operator=(queue&& __q) { c = _STD::move(__q.c); return *this; } #endif bool empty() const {return c.empty();} size_type size() const {return c.size();} reference front() {return c.front();} const_reference front() const {return c.front();} reference back() {return c.back();} const_reference back() const {return c.back();} void push(const value_type& __v) {c.push_back(__v);} #ifdef _LIBCPP_MOVE void push(value_type&& __v) {c.push_back(_STD::move(__v));} template void emplace(_Args&&... __args) {c.emplace_back(_STD::forward<_Args>(__args)...);} #endif void pop() {c.pop_front();} void swap(queue& __q) { using _STD::swap; swap(c, __q.c); } template friend bool operator==(const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); template friend bool operator< (const queue<_T1, _C1>& __x,const queue<_T1, _C1>& __y); }; template inline bool operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return __x.c == __y.c; } template inline bool operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return __x.c < __y.c; } template inline bool operator!=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return !(__x == __y); } template inline bool operator> (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return __y < __x; } template inline bool operator>=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return !(__x < __y); } template inline bool operator<=(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y) { return !(__y < __x); } template inline void swap(queue<_Tp, _Container>& __x, queue<_Tp, _Container>& __y) { __x.swap(__y); } template struct uses_allocator, _Alloc> : public uses_allocator<_Container, _Alloc> { }; template , class _Compare = less > class priority_queue { public: typedef _Container container_type; typedef _Compare value_compare; typedef typename container_type::value_type value_type; typedef typename container_type::reference reference; typedef typename container_type::const_reference const_reference; typedef typename container_type::size_type size_type; protected: container_type c; value_compare comp; public: explicit priority_queue(const value_compare& __comp = value_compare()) : c(), comp(__comp) {} priority_queue(const value_compare& __comp, const container_type& __c); #ifdef _LIBCPP_MOVE explicit priority_queue(const value_compare& __comp, container_type&& __c); #endif template priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp = value_compare()); template priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp, const container_type& __c); #ifdef _LIBCPP_MOVE template priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp, container_type&& __c); priority_queue(priority_queue&& __q); priority_queue& operator=(priority_queue&& __q); #endif template explicit priority_queue(const _Alloc& __a, typename enable_if::value>::type* = 0); template priority_queue(const value_compare& __comp, const _Alloc& __a, typename enable_if::value>::type* = 0); template priority_queue(const value_compare& __comp, const container_type& __c, const _Alloc& __a, typename enable_if::value>::type* = 0); template priority_queue(const priority_queue& __q, const _Alloc& __a, typename enable_if::value>::type* = 0); #ifdef _LIBCPP_MOVE template priority_queue(const value_compare& __comp, container_type&& __c, const _Alloc& __a, typename enable_if::value>::type* = 0); template priority_queue(priority_queue&& __q, const _Alloc& __a, typename enable_if::value>::type* = 0); #endif bool empty() const {return c.empty();} size_type size() const {return c.size();} const_reference top() const {return c.front();} void push(const value_type& __v); #ifdef _LIBCPP_MOVE void push(value_type&& __v); template void emplace(_Args&&... __args); #endif void pop(); void swap(priority_queue& __q); }; template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const _Compare& __comp, const container_type& __c) : c(__c), comp(__comp) { _STD::make_heap(c.begin(), c.end(), comp); } #ifdef _LIBCPP_MOVE template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const value_compare& __comp, container_type&& __c) : c(_STD::move(__c)), comp(__comp) { _STD::make_heap(c.begin(), c.end(), comp); } #endif template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp) : c(__f, __l), comp(__comp) { _STD::make_heap(c.begin(), c.end(), comp); } template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp, const container_type& __c) : c(__c), comp(__comp) { c.insert(c.end(), __f, __l); _STD::make_heap(c.begin(), c.end(), comp); } #ifdef _LIBCPP_MOVE template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l, const value_compare& __comp, container_type&& __c) : c(_STD::move(__c)), comp(__comp) { c.insert(c.end(), __f, __l); _STD::make_heap(c.begin(), c.end(), comp); } template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(priority_queue&& __q) : c(_STD::move(__q.c)), comp(_STD::move(__q.comp)) { } template priority_queue<_Tp, _Container, _Compare>& priority_queue<_Tp, _Container, _Compare>::operator=(priority_queue&& __q) { c = _STD::move(__q.c); comp = _STD::move(__q.comp); return *this; } #endif template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const _Alloc& __a, typename enable_if::value>::type*) : c(__a) { } template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const value_compare& __comp, const _Alloc& __a, typename enable_if::value>::type*) : c(__a), comp(__comp) { } template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const value_compare& __comp, const container_type& __c, const _Alloc& __a, typename enable_if::value>::type*) : c(__c, __a), comp(__comp) { _STD::make_heap(c.begin(), c.end(), comp); } template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const priority_queue& __q, const _Alloc& __a, typename enable_if::value>::type*) : c(__q.c, __a), comp(__q.comp) { _STD::make_heap(c.begin(), c.end(), comp); } #ifdef _LIBCPP_MOVE template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(const value_compare& __comp, container_type&& __c, const _Alloc& __a, typename enable_if::value>::type*) : c(_STD::move(__c), __a), comp(__comp) { _STD::make_heap(c.begin(), c.end(), comp); } template template inline priority_queue<_Tp, _Container, _Compare>::priority_queue(priority_queue&& __q, const _Alloc& __a, typename enable_if::value>::type*) : c(_STD::move(__q.c), __a), comp(_STD::move(__q.comp)) { _STD::make_heap(c.begin(), c.end(), comp); } #endif template inline void priority_queue<_Tp, _Container, _Compare>::push(const value_type& __v) { c.push_back(__v); _STD::push_heap(c.begin(), c.end(), comp); } #ifdef _LIBCPP_MOVE template inline void priority_queue<_Tp, _Container, _Compare>::push(value_type&& __v) { c.push_back(_STD::move(__v)); _STD::push_heap(c.begin(), c.end(), comp); } template template inline void priority_queue<_Tp, _Container, _Compare>::emplace(_Args&&... __args) { c.emplace_back(_STD::forward<_Args>(__args)...); _STD::push_heap(c.begin(), c.end(), comp); } #endif template inline void priority_queue<_Tp, _Container, _Compare>::pop() { _STD::pop_heap(c.begin(), c.end(), comp); c.pop_back(); } template inline void priority_queue<_Tp, _Container, _Compare>::swap(priority_queue& __q) { using _STD::swap; swap(c, __q.c); swap(comp, __q.comp); } template inline void swap(priority_queue<_Tp, _Container, _Compare>& __x, priority_queue<_Tp, _Container, _Compare>& __y) { __x.swap(__y); } template struct uses_allocator, _Alloc> : public uses_allocator<_Container, _Alloc> { }; _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP_QUEUE