01-复杂度1 最大子列和问题

链表写法:

#pragma warning(disable:4996)

#include 
#include 

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

List Create(int number);

int main()
{
    int inputnumber,max,max_1;
    List L,temp;
    scanf("%d",&inputnumber);
    L=Create(inputnumber);
    max = 0;
    max_1 = 0;
    for (int i = 0; i < inputnumber; i++)
    {
        temp = L;
        max_1 += temp->number;
        temp = temp->next;
        if (max_1 < 0)
        {
            max_1 = 0;
        }
        else
        {
            if (max_1 > max)
            {
                max = max_1;
            }
        }
        L = L->next;
    }
    printf("%d",max);
    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;inumber = data;
        t->next = temp;
        t = temp;
    }
    t->next = NULL;
    cycle = L;
    L = L->next;
    free(cycle);
    return L;
}

 

数组写法:

 

//算法 4 ,T(N)=O(N)(代码源自于官方mooc)
#include 
#include 

int main()
{
    int n;                    //数组元素个数
    scanf("%d",&n);
    int i=0;
    int number[n];
    for(i=0;i


题目源于中国mooc。

你可能感兴趣的:(数据结构,C语言,数据结构)