2017CVTE-C++笔试题-求最大和子序列

题目

输入一个整型数组,数组里有正数也有负数。 数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。 求所有子数组的和的最大值。要求时间复杂度为O(n)。 例如输入的数组为1, -2, 3, 10, -4, 7, 2, -5,和最大的子数组为3, 10, -4, 7, 2,

代码

#include
using namespace std;

#define NUM 8

int main()
{
    int ary[NUM] = { 1, -2, 3, 10, -4, 7, 2, -5 };
    
    int max = 0;//保存最大和
    int curSum = 0;//保存当前和
    int curStart = 0;//当前和的起始位置
    int start = 0;//最大和的起始位置
    int end = 0;//最大和的终止位置
    for (int i = 0; imax)
        {
            max = curSum;
            start = curStart;
            end = i;
        }
    }

    cout << "和最大的子数组为:" << endl;
    for (int i = start; i <= end; i++)
    {
        cout << ary[i] << " ";
    }
    cout << "= " << max;
    cin.get();
    return 0;
}

结果

结果.png

你可能感兴趣的:(2017CVTE-C++笔试题-求最大和子序列)