stl:priority_queue:push
From C++ Reference
push
Syntax:
#include <queue> void push( const TYPE& val );
The function push() adds val to the end of the current priority queue.
From C++ Reference
Syntax:
#include <queue> void push( const TYPE& val );
The function push() adds val to the end of the current priority queue.