I need to store numbers in a queue in increasing order.
I used priority queue which stores higher value first, that is in decreasing order.
priority_queue<int>q;
Is it possible to order them increasing ?
What can i do to make the data order to be increasing ?