Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Write a program which by given array of integer values (containing negative integers) finds the maximum sum of successive elements in the array.

Example: {2, 3, -6, -1, 2, -1, 6, 4, -8, 8} -> 11

I am searching for a solution which is faster than O(N^2).

This is not homework.

share|improve this question
1,2,5,6 are not successive. If you have no restriction on the subset that can be taken, this is the Subset-Sum problem, which is NP-Complete, but I don't think it is the case. – amit Sep 9 '12 at 13:02
Sorry for the misunderstanding. I have made a mistake in the description and example. :) I have updated both. – user1106337 Sep 9 '12 at 13:03
A linear scan can solve this problem. Just sum up and compare with current max, if the sum < 0, then reset sum to 0 and continue. This greedy solution has been proven to be correct. It's called Kadane's algorithm: en.wikipedia.org/wiki/Maximum_subarray_problem – nhahtdh Sep 9 '12 at 13:04
@user1106337: It works for any case - even if the whole array is negative (just pick the largest of all negative numbers). – nhahtdh Sep 9 '12 at 13:07
show 2 more comments

2 Answers

up vote 5 down vote accepted

I think Kadane's Algorithm is what you want. Here is a blog post about it.

share|improve this answer

This is actually a textbook problem I studied in college(Data Structures and Algorithms in C by Mark Allen Weiss)...It is a very beautiful and elegant solution and solves in O(N)

int MaxSubsequenceSum(const int A[], int N)
{
    int ThisSum, MaxSum, j;

    ThisSum=MaxSum=0;
    for(j=0;j<N;j++)
    {
        ThisSum+=A[j];

        if(ThisSum>MaxSum)
            MaxSum=ThisSum
        else if(ThisSum<0)
            ThisSum=0;
    }
    return MaxSum;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.