码迷,mamicode.com
首页 > 编程语言 > 详细

[LeetCode] Maximum Average Subarray I 子数组的最大平均值

时间:2017-08-06 15:04:50      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:tput   div   均值   elements   des   数组   desc   int   tco   

 

Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the maximum average value.

Example 1:

Input: [1,12,-5,-6,50,3], k = 4
Output: 12.75
Explanation: Maximum average is (12-5-6+50)/4 = 51/4 = 12.75

 

Note:

  1. 1 <= k <= n <= 30,000.
  2. Elements of the given array will be in the range [-10,000, 10,000].

 

s

 

 

 

 

[LeetCode] Maximum Average Subarray I 子数组的最大平均值

标签:tput   div   均值   elements   des   数组   desc   int   tco   

原文地址:http://www.cnblogs.com/grandyang/p/7294585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!