码迷,mamicode.com
首页 > 编程语言 > 详细

求子数组的最大和要求O(n)

时间:2014-11-03 14:39:21      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   for   sp   2014   log   时间   

//求子数组的最大和

//输入一个整形数组,有整数也有负数,数组中连续一个或多个子数组,每个子数组都有一个和,求所有子数组的和的最大值,要求时间复杂度O(n)



#include<iostream>

int GetMax( int * arr)
{
	int max = arr[0];
	for (int i = 1; i < 10; i++)
	{
		if (max < arr[i])
		{
			max = arr[i];
		}
	}	return max;
}

int getMaxSum(int * arr)
{
	int result = 0;
	int tmp = 0;
	for (int i = 0; i < 10; i++)
	{
		if (tmp>0)
		{
			tmp += arr[i];
		}
		else
		{
			tmp = arr[i];
		}
		if (tmp > result)
			result = tmp;

	}	return result;
}

using namespace std;

void main()
{
	int arr[10] = { 1, -3, 8, -6, 2, -3,4, 8,  -11, 12 };
	int max = GetMax( arr);
	if (max <= 0)
	{
		cout << "最大子数组和为" << max;
		cin.get();
		return;
	}
	int result = getMaxSum(arr);

	cout << "最大子数组和为" << result;

	cin.get();
}


求子数组的最大和要求O(n)

标签:blog   io   ar   os   for   sp   2014   log   时间   

原文地址:http://blog.csdn.net/zhouqinghe24/article/details/40739681

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!