摘要:
方法一:#include #include #define N 10using namespace std;int maxxunhuan(int array[N] , int n){ int i,j = 0,m,c = 0; int sum = array[0],b = 0,max = 0;... 阅读全文
摘要:
#include #includeusing namespace std;#define M 4#define N 4int maxline(int *array, int len) //求一维数组最大子序列和 { int i, sum = array[0], b = 0,... 阅读全文
摘要:
要求: 要求程序必须能处理1000 个元素; 每个元素是int32 类型的; 输入一个整形数组,数组里有正数也有负数。 数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。 求所有子数组的和的最大值。要求时间复杂度为O(n)。#include using namespace std;#d... 阅读全文
摘要:
要求: 输入一个整形数组,数组里有正数也有负数。 数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。 求所有子数组的和的最大值。思路:如输入1 2 3 4 5 -6 7 -8 9 0从1开始逐步向后加,取最大的记为max[0],同时记录下加到第几个数时得到最大值,记位置为k从2开始逐步... 阅读全文