480 Sliding Window Median
1. Question
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.
Examples:
[2,3,4], the median is3
[2,3], the median is(2 + 3) / 2 = 2.5
Given an arraynums, there is a sliding window of sizekwhich is moving from the very left of the array to the very right. You can only see theknumbers in the window. Each time the sliding window moves right by one position. Your job is to output the median array for each window in the original array.
For example,
Givennums=[1,3,-1,-3,5,3,6,7], andk= 3.
Window position Median
--------------- -----
[1 3 -1] -3 5 3 6 7 1
1 [3 -1 -3] 5 3 6 7 -1
1 3 [-1 -3 5] 3 6 7 -1
1 3 -1 [-3 5 3] 6 7 3
1 3 -1 -3 [5 3 6] 7 5
1 3 -1 -3 5 [3 6 7] 6Therefore, return the median sliding window as[1,-1,-1,3,5,6].
Note:
You may assumekis always valid, ie:kis always smaller than input array's size for non-empty array.
2. Implementation
(1) Heap
思路:
3. Time & Space Complexity
Heap: 时间复杂度O(nlogk), 空间复杂度O(n-k) + O(k) => O(n)
Last updated
Was this helpful?