博客
关于我
牛客题霸 [滑动窗口的最大值] C++题解/答案
阅读量:159 次
发布时间:2019-02-27

本文共 1011 字,大约阅读时间需要 3 分钟。

??????????????????????????????????????????????????????????????????????????

????

  • ????????????????????????????????????????
  • ????????????????????????????
  • ?????????????????????????????????????
  • ???????????????????????????????????????????????
  • ???????????????????????
  • ????

    #include 
    using namespace std;vector
    maxInWindows(const vector
    & num, unsigned int size) { vector
    result; int len = num.size(); if (len < size) { return result; } for (int i = 0; i <= len - size; ++i) { int max_val = -1; for (int j = i; j < i + size; ++j) { if (num[j] > max_val) { max_val = num[j]; } } result.push_back(max_val); } return result;}

    ????

  • ??????????????????????????????????????????
  • ????????????????????????????0????????????
  • ?????????????????????????????????????????
  • ???????????????????????
  • ??????????????????????
  • ?????????????????????????????????????O(n*k)???????????????????????

    转载地址:http://obzb.baihongyu.com/

    你可能感兴趣的文章
    npm run dev 报错PS ‘vite‘ 不是内部或外部命令,也不是可运行的程序或批处理文件。
    查看>>
    npm start运行了什么
    查看>>
    npm WARN deprecated core-js@2.6.12 core-js@<3.3 is no longer maintained and not recommended for usa
    查看>>
    NPM使用前设置和升级
    查看>>
    npm入门,这篇就够了
    查看>>
    npm切换到淘宝源
    查看>>
    npm前端包管理工具简介---npm工作笔记001
    查看>>
    npm发布自己的组件UI包(详细步骤,图文并茂)
    查看>>
    npm和yarn清理缓存命令
    查看>>
    npm和yarn的使用对比
    查看>>
    npm学习(十一)之package-lock.json
    查看>>
    npm安装crypto-js 如何安装crypto-js, python爬虫安装加解密插件 找不到模块crypto-js python报错解决丢失crypto-js模块
    查看>>
    npm报错unable to access ‘https://github.com/sohee-lee7/Squire.git/‘
    查看>>
    npm的常用配置项---npm工作笔记004
    查看>>
    npm的问题:config global `--global`, `--local` are deprecated. Use `--location=global` instead 的解决办法
    查看>>
    npm编译报错You may need an additional loader to handle the result of these loaders
    查看>>
    npm配置安装最新淘宝镜像,旧镜像会errror
    查看>>
    npm错误Error: Cannot find module ‘postcss-loader‘
    查看>>
    NPOI之Excel——合并单元格、设置样式、输入公式
    查看>>
    NPOI利用多任务模式分批写入多个Excel
    查看>>