01-复杂度2 Maximum Subsequence Sum

链表做法:

#pragma warning(disable:4996)

#include <stdio.h>
#include <stdlib.h>

typedef struct Node *List;
struct Node
{
	int number;
	List next;
};

List Create(int number);

int main()
{
	int inputnumber,max,max_1,front,rear,front_1;
	List L,temp;
	scanf("%d",&inputnumber);
	L=Create(inputnumber);
	max = -1;
	max_1 = 0;
	front = 0;
	rear = 0;
	front_1 = L->number;
	front = L->number;
	for (int i = 0; i < inputnumber; i++)
	{
		temp = L;
		max_1 += temp->number;
		temp = temp->next;
        if (max_1 > max)
        {
            max = max_1;
            front = front_1;
            rear = L->number;
        }
		if (max<0 )
		{
			rear = L->number;
		}
		L = L->next;
		if (max_1 < 0 && L)
		{
			front_1 = L->number;
            max_1 = 0;
		}
	}
	if (max<0)
	{
		max = 0;
	}
	printf("%d %d %d",max,front,rear);
	return 0;
}

List Create(int number)
{
	List L,t,cycle;
	int i,data;
	L = (List)malloc(sizeof(struct Node));
	L->next = NULL;
	t = L;
	i = 0;
	for (i=0;i<number;i++)
	{
		List temp;
		temp = (List)malloc(sizeof(struct Node));
		scanf("%d",&data);
		temp->number = data;
		t->next = temp;
		t = temp;
	}
	t->next = NULL;
	cycle = L;
	L = L->next;
	free(cycle);
	return L;
}

题源中国mooc

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值