摘要: 基础用法 int main() { /* c++优先队列默认为大根堆 */ priority_queue<int, vector<int>> heap; heap.push(1); heap.push(2); heap.push(3); while(heap.size()){ cout<<heap. 阅读全文
posted @ 2024-09-03 09:38 Biang-Biang 阅读(17) 评论(0) 推荐(0)