Need help regarding comparator

So as in this question we are making max heap so we are using greater comparator , what if we want to make min heap then what we have to do

hello @adarshsingh2k

priority_queue< int> pq; // this is for max heap

priority_queue< int,vector< int> , greater< int> > pq; // this is for min heap

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.