激昂白昼

文章
5
资源
0
加入时间
2年10月17天

结构体优先队列排序

#include #include #include #include using namespace std;struct Node{ int x , y; Node(int a = 0 , int b = 0){ x = a , y = b; }};bool operator<(Node a , Node b){ if(a.x