-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0239_maxSlidingWindow.cc
61 lines (56 loc) · 1.17 KB
/
Problem_0239_maxSlidingWindow.cc
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
#include <deque>
#include <iostream>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
vector<int> maxSlidingWindow(vector<int> &nums, int k)
{
if (k < 1 || nums.size() < k)
{
return {};
}
vector<int> ans(nums.size() - k + 1);
deque<int> q;
int index = 0;
for (int r = 0; r < nums.size(); r++)
{
while (!q.empty() && nums[q.back()] <= nums[r])
{
// 单调递减队列
q.pop_back();
}
q.push_back(r);
if (q.front() < r - k + 1)
{
// 队头节点需要在窗口[r - k + 1, r]内
// 窗口维持大小为k
q.pop_front();
}
if (r >= k - 1)
{
// 从窗口长度第一次符合时开始计算
ans[index++] = nums[q.front()];
}
}
return ans;
}
};
void testMaxSlidingWindow()
{
Solution s;
vector<int> n1 = {1, 3, -1, -3, 5, 3, 6, 7};
vector<int> n2 = {1};
vector<int> o1 = {3, 3, 5, 5, 6, 7};
vector<int> o2 = {1};
EXPECT_TRUE(o1 == s.maxSlidingWindow(n1, 3));
EXPECT_TRUE(o2 == s.maxSlidingWindow(n2, 1));
EXPECT_SUMMARY;
}
int main()
{
testMaxSlidingWindow();
return 0;
}