无分类 PHP 优先级队列:SplPriorityQueue PHP 的 SPL 库内置了 SplPriorityQueue优先级队列,是以Heap堆特性实现的,默认为MaxHeap模式,即priority越大越优先出队,同时可以通过重写compare方法来使用MinHeap(优先级越低越优先出队,场景貌似很少吧)。
java leetcode378. Kth Smallest Element in a Sorted Matrix 在一个从左到右,从上到下均有序的二维数组中,找到从小到第k个数字,这里需要注意,不要求一定要是唯一的值,即假设存在这样一个序列1,2,2,3,则第三个数字是2而不是3。
java [LeetCode] 480. Sliding Window Median Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.