compare function in priority queue

Revision en3, by ankit_gupta_, 2018-11-23 19:52:05

struct compare { bool operator()(node l, node r) { .... } };

We use above struct in the priority queue to define custom compare function.

Why () operator overloading works?

Thanks in advance..

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English ankit_gupta_ 2018-11-23 19:52:05 43
en2 English ankit_gupta_ 2018-11-23 19:50:36 25 Tiny change: ' operator?' -> ' operator?\n\n\nThanks in advance..'
en1 English ankit_gupta_ 2018-11-23 19:50:17 250 Initial revision (published)