码迷,mamicode.com
首页 > 其他好文 > 详细

53 Maximum Subarray

时间:2018-08-10 16:01:05      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:imu   return   span   div   youtube   class   integer   bsp   sub   

53 Maximum Subarray


https://www.youtube.com/watch?v=7J5rs56JBs8



class Solution {
    public int maxSubArray(int[] nums) {
      int[] result = new int[nums.length];
      result[0] = nums[0];
      for(int i = 1; i < nums.length; i++){
        result[i] = result[i-1] > 0 ? result[i-1] + nums[i] : nums[i];
      }
      int max = Integer.MIN_VALUE;
      for(int i = 0; i < nums.length; i++){
        max = Math.max(result[i], max);
      }
      return max;
        
    }
}

 

53 Maximum Subarray

标签:imu   return   span   div   youtube   class   integer   bsp   sub   

原文地址:https://www.cnblogs.com/tobeabetterpig/p/9454838.html

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