1 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. 2 3 Examples: 4 [2,3,4] , the median is 3 5 6 [2,3], the median is (2 + 3) / 2 = 2.5 7 8 Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers 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. 9 10 For example, 11 Given nums = [1,3,-1,-3,5,3,6,7], and k = 3. 12 13 Window position Median 14 --------------- ----- 15 [1 3 -1] -3 5 3 6 7 1 16 1 [3 -1 -3] 5 3 6 7 -1 17 1 3 [-1 -3 5] 3 6 7 -1 18 1 3 -1 [-3 5 3] 6 7 3 19 1 3 -1 -3 [5 3 6] 7 5 20 1 3 -1 -3 5 [3 6 7] 6 21 Therefore, return the median sliding window as [1,-1,-1,3,5,6].
,相关文章
- 一起刷LeetCode4-Median of Two Sorted Arrays
- LeetCode_Minimum Window Substring
- POJ2823 Sliding Window (单调队列)
- C++ Leetcode Median of Two Sorted Arrays
- leetcode-algorithms-4 Median of Two Sorted Arrays
- LeetCode: 239. Sliding Window Maximum
- 【POJ 2823 Sliding Window】 单调队列
- Median of Two Sorted Arrays-----LeetCode
- Sliding Window Maximum 解答
- C#LeetCode刷题之#4-两个排序数组的中位数(Median of Two Sorted Arrays)