-
Notifications
You must be signed in to change notification settings - Fork 0
/
64. 滑动窗口的最大值.cpp
40 lines (38 loc) · 1.08 KB
/
64. 滑动窗口的最大值.cpp
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
/*
给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。
例如,如果输入数组{2,3,4,2,6,2,5,1}及滑动窗口的大小3,那么一共存在6个滑动窗口,
他们的最大值分别为{4,4,6,6,6,5}; 针对数组{2,3,4,2,6,2,5,1}的滑动窗口有以下6个:
{[2,3,4],2,6,2,5,1}, {2,[3,4,2],6,2,5,1}, {2,3,[4,2,6],2,5,1},
{2,3,4,[2,6,2],5,1}, {2,3,4,2,[6,2,5],1}, {2,3,4,2,6,[2,5,1]}。
*/
/*
思路:双端队列
*/
class Solution {
public:
vector<int> maxInWindows(const vector<int>& num, unsigned int size)
{
vector<int> res;
if (num.size() >= size && size >= 1)
{
deque<int> index;
for (int i = 0; i < size; ++i)
{
while (!index.empty() && num[i] >= num[index.back()])
index.pop_back();
index.push_back(i);
}
for (int i = size; i < num.size(); ++i)
{
res.push_back(num[index.front()]);
while (!index.empty() && num[i] >= num[index.back()])
index.pop_back();
if (!index.empty() && index.front() <= (int)(i - size))
index.pop_front();
index.push_back(i);
}
res.push_back(num[index.front()]);
}
return res;
}
};