1 Star 1 Fork 0

bywuuu/pyTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
滑动窗口的最大值.py 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
bywuuu 提交于 2019-12-15 18:54 . debug
# 给定一个数组和滑动窗口的大小,找出所有滑动窗口里数值的最大值。
# 例如,如果输入数组{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:
def maxInWindows(self, num, size):
# write code here
if size<=0:
return []
if size>=len(num):
return [max(num)]
if not num:
return []
temp = num[:size]
res = []
res.append(max(temp))
# times = len(num)-size+1
for i in range(size,len(num)):
temp.pop(0)
temp.append(num[i])
res.append(max(temp))
return res
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bywuuu/pyTest.git
[email protected]:bywuuu/pyTest.git
bywuuu
pyTest
pyTest
master

搜索帮助