LeetCodeAnimation/notes/LeetCode第239号问题:滑动窗口最大值.md
2019-05-02 16:23:13 +08:00

92 lines
3.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# LeetCode 239 号问题滑动窗口最大值
> 本文首发于公众号五分钟学算法[图解 LeetCode ](<https://github.com/MisterBooo/LeetCodeAnimation>)系列文章之一。
>
> 个人网站[https://www.cxyxiaowu.com](https://www.cxyxiaowu.com)
题目来源于 LeetCode 上第 239 号问题滑动窗口最大值题目难度为 Hard目前通过率为 40.5%
### 题目描述
给定一个数组 *nums*有一个大小为 *k* 的滑动窗口从数组的最左侧移动到数组的最右侧你只可以看到在滑动窗口 *k* 内的数字滑动窗口每次只向右移动一位
返回滑动窗口最大值
**示例:**
```
输入: nums = [1,3,-1,-3,5,3,6,7], k = 3
输出: [3,3,5,5,6,7]
解释:
滑动窗口的位置 最大值
--------------- -----
[1 3 -1] -3 5 3 6 7 3
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 5
1 3 -1 -3 [5 3 6] 7 6
1 3 -1 -3 5 [3 6 7] 7
```
**注意**
你可以假设 *k* 总是有效的1 k 输入数组的大小且输入数组不为空
**进阶**
你能在线性时间复杂度内解决此题吗
### 题目解析
利用一个 **双端队列**在队列中存储元素在数组中的位置 并且维持队列的严格递减,也就说维持队首元素是 **最大的 **当遍历到一个新元素时, 如果队列里有比当前元素小的就将其移除队列以保证队列的递减当队列元素位置之差大于 k就将队首元素移除
### 补充什么是双端队列Dqueue
Deque 的含义是 double ended queue即双端队列它具有队列和栈的性质的数据结构顾名思义它是一种前端与后端都支持插入和删除操作的队列
Deque 继承自 Queue队列它的直接实现有 ArrayDequeLinkedList
###
### 动画描述
![动画描述 Made by Jun Chen](https://bucket-1257126549.cos.ap-guangzhou.myqcloud.com/blog/20whr.gif)
### 代码实现
```
class Solution {
public int[] maxSlidingWindow(int[] nums, int k) {
//有点坑,题目里都说了数组不为空,且 k > 0。但是看了一下测试用例里面还是有nums = [], k = 0所以只好加上这个判断
if (nums == null || nums.length < k || k == 0) return new int[0];
int[] res = new int[nums.length - k + 1];
//双端队列
Deque<Integer> deque = new LinkedList<>();
for (int i = 0; i < nums.length; i++) {
//在尾部添加元素,并保证左边元素都比尾部大
while (!deque.isEmpty() && nums[deque.getLast()] < nums[i]) {
deque.removeLast();
}
deque.addLast(i);
//在头部移除元素
if (deque.getFirst() == i - k) {
deque.removeFirst();
}
//输出结果
if (i >= k - 1) {
res[i - k + 1] = nums[deque.getFirst()];
}
}
return res;
}
}
```
![](https://bucket-1257126549.cos.ap-guangzhou.myqcloud.com/blog/fz0rq.png)