• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

Maximum Average Subarray

Given an array with positive and negative numbers, find the maximum average subarray which length should be greater or equal to given length k.

 

Example

Given nums = [1, 12, -5, -6, 50, 3], k = 3

Return 15.667 // (-6 + 50 + 3) / 3 = 15.667

利用队列建立窗口

 1 public class Solution {
 2     /**
 3      * @param nums an array with positive and negative numbers
 4      * @param k an integer
 5      * @return the maximum average
 6      */
 7     public double maxAverage(int[] nums, int k) {
 8         // Write your code here
 9         if(k<=0||nums==null||nums.length==0) return 0;
10         double average = Double.NEGATIVE_INFINITY;
11         double sum = 0;
12         Queue<Integer> queue = new LinkedList<Integer>();
13         
14         for(int i=0;i< nums.length;i++){
15             if(i>=k){
16                 int out = queue.poll();
17                 sum-=out;
18             }
19             queue.offer(nums[i]);
20             sum+=nums[i];
21             if(i>=k-1){
22                 average = Math.max(average, sum/k);
23             }
24         }
25         
26         return average;
27     }
28 }

 

posted on 2017-05-10 14:58  xxxqqq  阅读(288)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3