摘要: 1. 优先队列 想重载自带的类型的比较方式,但是又不想重载运算符怎么办? 答: #include<bits/stdc++.h> using namespace std; struct cmp{ bool operator()(int x,int y)const{ return x<y;//大根堆 / 阅读全文
posted @ 2024-08-05 20:39 YT0104 阅读(6) 评论(0) 推荐(0) 编辑