H2430823061


私信TA

用户名:dotcpp0787261

访问量:83

签 名:

等  级
排  名 5973
经  验 1476
参赛次数 7
文章发表 3
年  龄 0
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

TA的其他文章

简易链表求和
浏览:4

解题思路:

注意事项:函数名是拼音,英语不好

参考代码:

#include <stdio.h>

#include <stdlib.h>

typedef struct node

{

    int s;

    int x;

    struct node *next;

} node;//定义结构体

node *chuangjian()//创建头节点

{

    node *head=(node*)malloc(sizeof(node));

    if(head==NULL)

    {

        printf("内存分配失败!\n");

    }

    head->next=NULL;

    return head;

}

node *chuangjianjie(node *head)//头部插入新节点。

{

    for(int j=0;j<10;j++)//循环请求空间及输入

    {

    node *newnode=(node*)malloc(sizeof(node));

    if(newnode==NULL)

    {

        printf("内存分配失败!\n");

    }

    scanf("%d %d",&newnode->s,&newnode->x);

    newnode->next=head->next;

    head->next=newnode;

    }

}

//遍历简易链表。

void bianli(node *head)

{

    node *p=head->next;

    int num=0,num1=0;//初始化不然,唉乱码

    while(p!=NULL)

    {

        num=num+p->s;

        num1=num1+p->x;

        p=p->next;

    }

    printf("%d+%di",num,num1);

}

int main()

{

    node *head=chuangjian();

    chuangjianjie(head);

    bianli(head);

    return 0;

}


 

0.0分

0 人评分

  评论区

不愧是2班的,有点意思
2024-11-22 21:36:32
  • «
  • 1
  • »