LeetCode239. Sliding Window Maximum

文章目录

一、题目

You are given an array of integers nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves right by one position.

Return the max sliding window.

Example 1:

Input: nums = [1,3,-1,-3,5,3,6,7], k = 3
Output: [3,3,5,5,6,7]
Explanation:
Window position Max


[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
Example 2:

Input: nums = [1], k = 1
Output: [1]

Constraints:

1 <= nums.length <= 105
-104 <= nums[i] <= 104
1 <= k <= nums.length

二、题解

方法一:优先级队列法

class Solution {
   
public:
    vector<int> maxSlidingWindow(vector<int>& nums, int k) {
   
        int n = nums.size();
        priority_queue<pair<int,int>> q;
        for(int i = 0;i < k;i++){
   
            q.emplace(nums[i],i);
        }
        vector<int> res = {
   q.top().first};
        for(int i = k;i < n;i++){
   
            q.emplace(nums[i],i);
            //若最大值不在窗口中,不断移除元素
            while(q.top().second <= i-k) q.pop();
            res.push_back(q.top().first);
        }
        return res;
    }
};

方法二、单调队列法

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

相关推荐

  1. LeetCode239. Sliding Window Maximum

    2023-12-22 17:10:06       34 阅读
  2. leetcode-2846、560、239、76

    2023-12-22 17:10:06       35 阅读
  3. leetcode 23

    2023-12-22 17:10:06       17 阅读
  4. LeetCode 550, 380, 234

    2023-12-22 17:10:06       11 阅读
  5. Leetcode239. 滑动窗口最大值

    2023-12-22 17:10:06       39 阅读
  6. LeetCode239. 滑动窗口最大值

    2023-12-22 17:10:06       28 阅读
  7. LeetCode //C - 239. Sliding Window Maximum

    2023-12-22 17:10:06       17 阅读

最近更新

  1. TCP协议是安全的吗?

    2023-12-22 17:10:06       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2023-12-22 17:10:06       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2023-12-22 17:10:06       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2023-12-22 17:10:06       20 阅读

热门阅读

  1. Macos 删除过期失效的软链接symlink

    2023-12-22 17:10:06       43 阅读
  2. 【PHP】取出数组中的第一个元素

    2023-12-22 17:10:06       41 阅读
  3. 常见数据库安装

    2023-12-22 17:10:06       34 阅读
  4. ****Linux下Mysql的安装和配置

    2023-12-22 17:10:06       40 阅读
  5. linux:sed 用法详解

    2023-12-22 17:10:06       48 阅读