• LeetCode 53. Maximum Subarray


    分析

    难度 易

    来源

    https://leetcode.com/problems/maximum-subarray/description/

    题目

    Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

    Example:

    Input: [-2,1,-3,4,-1,2,1,-5,4],
    Output: 6
    Explanation: [4,-1,2,1] has the largest sum = 6.

    Follow up:

    If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.

    解答

    package LeetCode;
    /*
    遍历array,对于每一个数字,我们判断,(之前的sum + 这个数字) 和 (这个数字) 比大小,如果(这个数字)自己就比 (之前的sum + 这个数字) 大的话,那么说明不需要再继续加了,直接从这个数字,开始继续,因为它自己已经比之前的sum都大了。
        反过来,如果 (之前的sum + 这个数字)大于 (这个数字)就继续加下去。
     */
    public class L53_MaximumSubarray {
        public int maxSubArray(int[] nums) {
            int len=nums.length;
            int max=-java.lang.Integer.MAX_VALUE;
            if(nums==null||len==0)
                return max=0;
            else if(len==1)
                max=nums[0];
            else{
                int curMax=0;//dp[i]表示到第i个字符的最大字符串和
                for(int i=0;i<len;i++){
                    curMax=Math.max(nums[i],curMax+nums[i]);//注意max函数的第一个参数
                    if(curMax>max){
                        max=curMax;
                    }
                }
            }
            return max;
        }
    }

     

    博客园的编辑器没有CSDN的编辑器高大上啊
  • 相关阅读:
    年度回忆录(?——2011.01)
    我在学英语
    技能冷却
    抗锯齿
    在cocos2dx 2.x FPS 等参数
    手指效果
    cocos2dx 简单OpenGL 画图
    cocos2dx tile map瓦片地图的黑线及地图抖动解决方案
    C++操作SQLite数据库
    精灵点击移动
  • 原文地址:https://www.cnblogs.com/flowingfog/p/9804998.html
Copyright © 2020-2023  润新知