LeetCode hot100@堆 2024-11-12 19:51 | 80 | 0 | 算法 630 字 | 7 分钟 优先队列: 大根堆:priority_queue<int> maxHeap; 小根堆:priority_queue<int, vector<int>, greater<int>> minHeap; 自定义比较器: struct Comparator { bool operator()(ListNode *a,ListNode… leetcode优先队列力扣堆