in the function connect ropes with min cost, the priority queue initialization is not understood.
Code not understood
@kamakshi.behl22 hi,usme hmne minimum priority queue leni hai ,but by default wali hmari maximum priority queue hoti hai so to take min priority queue this is the format:
priority_queue<int, vector<
int
>, greater<
int
> > pq(arr, arr + n); `
greater is use ,so this is way to initialise min priority queue.
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.