Leetcode: Sliding Window Median

时间:2022-04-15 07:08:19

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].