239:滑动窗口最大值

This commit is contained in:
huangge1199@hotmail.com 2021-07-12 21:34:42 +08:00
parent 618c0d3bd6
commit 6292e3eef8
2 changed files with 156 additions and 0 deletions

View File

@ -0,0 +1,97 @@
//给你一个整数数组 nums有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧你只可以看到在滑动窗口内的 k 个数字滑动窗口每次只向右移动一位
//
//
// 返回滑动窗口中的最大值
//
//
//
// 示例 1
//
//
//输入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
//
//
// 示例 2
//
//
//输入nums = [1], k = 1
//输出[1]
//
//
// 示例 3
//
//
//输入nums = [1,-1], k = 1
//输出[1,-1]
//
//
// 示例 4
//
//
//输入nums = [9,11], k = 2
//输出[11]
//
//
// 示例 5
//
//
//输入nums = [4,-2], k = 2
//输出[4]
//
//
//
// 提示
//
//
// 1 <= nums.length <= 105
// -104 <= nums[i] <= 104
// 1 <= k <= nums.length
//
// Related Topics 队列 数组 滑动窗口 单调队列 优先队列
// 👍 1062 👎 0
package leetcode.editor.cn;
import java.util.LinkedList;
//239:滑动窗口最大值
class SlidingWindowMaximum {
public static void main(String[] args) {
//测试代码
Solution solution = new SlidingWindowMaximum().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int[] maxSlidingWindow(int[] nums, int k) {
if (nums == null || nums.length < 2) return nums;
LinkedList<Integer> queue = new LinkedList<>();
int[] result = new int[nums.length - k + 1];
for (int i = 0; i < nums.length; i++) {
while (!queue.isEmpty() && nums[queue.peekLast()] <= nums[i]) {
queue.pollLast();
}
queue.addLast(i);
if (queue.peek() <= i - k) {
queue.poll();
}
if (i + 1 >= k) {
result[i + 1 - k] = nums[queue.peek()];
}
}
return result;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,59 @@
<p>给你一个整数数组 <code>nums</code>,有一个大小为 <code>k</code><em> </em>的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 <code>k</code> 个数字。滑动窗口每次只向右移动一位。</p>
<p>返回滑动窗口中的最大值。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<b>输入:</b>nums = [1,3,-1,-3,5,3,6,7], k = 3
<b>输出:</b>[3,3,5,5,6,7]
<b>解释:</b>
滑动窗口的位置 最大值
--------------- -----
[1 3 -1] -3 5 3 6 7 <strong>3</strong>
1 [3 -1 -3] 5 3 6 7 <strong>3</strong>
1 3 [-1 -3 5] 3 6 7 <strong> 5</strong>
1 3 -1 [-3 5 3] 6 7 <strong>5</strong>
1 3 -1 -3 [5 3 6] 7 <strong>6</strong>
1 3 -1 -3 5 [3 6 7] <strong>7</strong>
</pre>
<p><strong>示例 2</strong></p>
<pre>
<b>输入:</b>nums = [1], k = 1
<b>输出:</b>[1]
</pre>
<p><strong>示例 3</strong></p>
<pre>
<b>输入:</b>nums = [1,-1], k = 1
<b>输出:</b>[1,-1]
</pre>
<p><strong>示例 4</strong></p>
<pre>
<b>输入:</b>nums = [9,11], k = 2
<b>输出:</b>[11]
</pre>
<p><strong>示例 5</strong></p>
<pre>
<b>输入:</b>nums = [4,-2], k = 2
<b>输出:</b>[4]</pre>
<p> </p>
<p><b>提示:</b></p>
<ul>
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
<li><code>-10<sup>4</sup> <= nums[i] <= 10<sup>4</sup></code></li>
<li><code>1 <= k <= nums.length</code></li>
</ul>
<div><div>Related Topics</div><div><li>队列</li><li>数组</li><li>滑动窗口</li><li>单调队列</li><li>堆(优先队列)</li></div></div>\n<div><li>👍 1062</li><li>👎 0</li></div>