DP_53

作者: MingweiLee | 来源:发表于2017-03-01 13:34 被阅读0次

    Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
    For example, given the array [-2,1,-3,4,-1,2,1,-5,4],
    the contiguous subarray [4,-1,2,1] has the largest sum = 6.

    solution

    这道题使用暴力O(n^2)一直超时,是一道优化题。
    通常我们使用dp求解这类问题。

    首先,需要找出问题的子问题:
    需要寻找到一个合适的子问题,能够和最终的目标有所联系,才算是关键的一步!
    

    相关文章

      网友评论

        本文标题:DP_53

        本文链接:https://www.haomeiwen.com/subject/lesqgttx.html