为了账号安全,请及时绑定邮箱和手机立即绑定

请问这个输出函数该怎么写啊?

请问这个输出函数该怎么写啊?

C
海绵宝宝撒 2023-03-16 21:17:49
struct node{int data;struct node *next;};struct node *create(){struct node *p;p=(struct node *)malloc(sizeof(struct node));p->next=0;return p;}main(){struct node *head,*q,*p,*t;int i;int x;head=create();for(i=1;i<=10;i++){printf("please input data:");scanf("%d",&x);q=create();q->data=x;if(i==1){head->next=q;p=q;}else{p->next=q;p=q;}}}
查看完整描述

2 回答

?
波斯汪

TA贡献1811条经验 获得超4个赞

直接用printf把节点的data输出就好了哇

查看完整回答
反对 回复 2023-03-18
?
慕桂英3389331

TA贡献2036条经验 获得超8个赞

#include<stdio.h>#include <stdlib.h>struct node{int data;struct node *next;};struct node *create(){    struct node *p;    p=(struct node *)malloc(sizeof(struct node));    p->next=0;    return p;}void show(node  *head){    head=head->next;    while(head!=NULL)    {        printf("%d\n",head->data);        head=head->next;    }}void main(){     struct node *head,*q,*p,*t;    int i;    int x;    head=create();    for(i=1;i<=10;i++)    {        printf("please input data:");        scanf("%d",&x);        q=create();        q->data=x;        if(i==1)        {            head->next=q;            p=q;        }        else        {p->next=q;        p=q;}    }    show(head);  }


查看完整回答
反对 回复 2023-03-18
  • 2 回答
  • 0 关注
  • 69 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信