solution.md 2.3 KB
Newer Older
ToTensor's avatar
ToTensor 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
# 滑动窗口最大值

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


## template

```cpp
#include <bits/stdc++.h>
using namespace std;

class Solution
{
public:
    vector<int> maxSlidingWindow(vector<int> &nums, int k)
    {
        vector<int> ans;
        int n = nums.size();
        if (n == 0 || k > n)
            return ans;
        deque<int> que;
        for (int i = 0; i < n; i++)
        {
            if (!que.empty())
            {
                if (i >= que.front() + k)
                    que.pop_front();
                while (!que.empty() && nums[i] >= nums[que.back()])
                    que.pop_back();
            }
            que.push_back(i);
            if (i + 1 >= k)
                ans.push_back(nums[que.front()]);
        }
        return ans;
    }
};


```

## 答案

```cpp

```

## 选项

### A

```cpp

```

### B

```cpp

```

### C

```cpp

```