Hello!
I have such data structure:
struct{
int a, b, c;
} tripl;
vector data;
Now I need to create a heap using make_heap() function... but dont know how to write comparable function.
Need help.
Googled, but found just a lot of trash and simple less<> and greater<> functions.