摘要: STL的优先队列: 头文件: 优先队列:priority_queue int类型默认优先队列(大根堆) int类型优先队列 (比较方式自定) 注意:cmp为结构体,且重载的是"()" 运算符! 自定类型优先队列 注意:重载"<" 运算符时只传入一个形参(number2 a)! 注意:用 “< ”时是 阅读全文
posted @ 2018-03-11 20:43 应子帆 阅读(237) 评论(0) 推荐(0) 编辑
摘要: #include<cstdio> #include<cstring> #include<vector> #include<algorithm> #include<iostream> using namespace std; struct BigInteger { static const int B 阅读全文
posted @ 2018-03-11 15:21 应子帆 阅读(1145) 评论(1) 推荐(0) 编辑