[C++] Stack / queue / priority_queue
Container adaptors:
std::stack LIFO (class template )
- (constructor)
- Construct stack (public member function)
- empty
- Test whether container is empty (public member function)
- size
- Return size (public member function)
- top
- Access next element (public member function)
- push
- Add element (public member function)
- pop
- Remove element (public member function)
std::queue FIFO (class template )
- empty
- Test whether container is empty (public member function)
- size
- Return size (public member function)
- front
- Access next element (public member function)
- back
- Access last element (public member function)
- push
- Insert element (public member function)
- pop
- Delete next element (public member function)
- empty
- Test whether container is empty (public member function)
- size
- Return size (public member function)
- top
- Access top element (public member function)
- push
- Insert element (public member function)
- pop
- Remove top element (public member function)