首页 > 其他分享 >LeetCode: 239. Sliding Window Maximum

LeetCode: 239. Sliding Window Maximum

时间:2022-12-05 18:04:35浏览次数:37  
标签:nums slidingWindow back LeetCode Window window array Sliding size


LeetCode: 239. Sliding Window Maximum

题目描述

Given an array 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:

Input: nums = [1,3,-1,-3,5,3,6,7], and 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

Note:

  • You may assume k is always valid, ​​1 ≤ k ≤ input array's size​​ for non-empty array.

Follow up:

  • Could you solve it in linear time?

解题思路

利用滑动窗口计算。

AC 代码

class Solution {
public:
vector<int> maxSlidingWindow(vector<int>& nums, int k) {
vector<int> ans;
list<int> slidingWindow;
int len = nums.size();

for(size_t i = 0; i < len; ++i)
{
if(i == 0)
{
slidingWindow.push_back(i);
}
else
{
while(!slidingWindow.empty() && nums[slidingWindow.back()] <= nums[i])
{
slidingWindow.pop_back();
}
slidingWindow.push_back(i);
}

if(i >= k-1)
{
ans.push_back(nums[slidingWindow.front()]);
if(slidingWindow.front()+k <= i+1)
{
slidingWindow.pop_front();
}
}
}

return ans;
}
};


标签:nums,slidingWindow,back,LeetCode,Window,window,array,Sliding,size
From: https://blog.51cto.com/u_15903085/5913205

相关文章

  • LeetCode: 228. Summary Ranges
    LeetCode:228.SummaryRanges题目描述Givenasortedintegerarraywithoutduplicates,returnthesummaryofitsranges.Example1:Input:[0,1,2,4,5,7]Output:[......
  • LeetCode: 234. Palindrome Linked List
    LeetCode:234.PalindromeLinkedList题目描述Givenasinglylinkedlist,determineifitisapalindrome.Example1:Input:1->2Output:falseExample2:Input:1->......
  • LeetCode: 241. Different Ways to Add Parentheses
    LeetCode:241.DifferentWaystoAddParentheses题目描述Givenastringofnumbersandoperators,returnallpossibleresultsfromcomputingallthedifferentp......
  • LeetCode: 238. Product of Array Except Self
    LeetCode:238.ProductofArrayExceptSelf题目描述Givenanarraynumsofnintegerswhere​​n>1​​​,returnanarrayoutputsuchthatoutput[i]isequal......
  • LeetCode: 242. Valid Anagram
    LeetCode:242.ValidAnagram题目描述Giventwostrings​​s​​​and​​t​​​,writeafunctiontodetermineiftisananagramof​​s​​.Example1:Inp......
  • LeetCode: 260. Single Number III
    LeetCode:260.SingleNumberIII题目描述Givenanarrayofnumbersnums,inwhichexactlytwoelementsappearonlyonceandalltheotherelementsappearexactl......
  • LeetCode: 278. First Bad Version
    LeetCode:278.FirstBadVersion题目描述Youareaproductmanagerandcurrentlyleadingateamtodevelopanewproduct.Unfortunately,thelatestversionofy......
  • LeetCode: 264. Ugly Number II
    LeetCode:264.UglyNumberII题目描述Writeaprogramtofindthen-thuglynumber.Uglynumbersarepositivenumberswhoseprimefactorsonlyinclude2,3,5.Ex......
  • LeetCode: 273. Integer to English Words
    LeetCode:273.IntegertoEnglishWordsConvertanon-negativeintegertoitsenglishwordsrepresentation.Giveninputisguaranteedtobelessthan​​23^1-......
  • LeetCode: 236. Lowest Common Ancestor of a Binary Tree
    LeetCode:236.LowestCommonAncestorofaBinaryTree题目描述Givenabinarytree,findthelowestcommonancestor(LCA)oftwogivennodesinthetree.Accordi......