美好大山

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

结构体&优先队列 自定义排序

#include<bits/stdc++.h> using namespace std; typedef long long LL; struct node { LL d;//储存距离 int u;//点的标号 bool operator < ( const node& b)const// & 表示的是引用,...