1298150336 发表于 2020-4-5 22:00:13

礼貌求助关于打印单链表问题

这段代码我不知道错在哪里,望告知,十分感谢

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
struct Node
{
        int data;
        struct Node *next;
};
void printNode(struct Node *head,int n);
void printNode(struct Node *head,int n)//打印单链表数据
{ int i;
printf("现在开始打印%d个数:",n);
for(i=0;i<n;i++)
{
          printf("%d\t",head->data);
          head=head->next;
}
}
void createListhead(struct Node **head,int n);
void createListhead(struct Node **head,int n)//头插法创建单链表
{ int i;
struct Node *p;
*head=(struct Node*)malloc(sizeof(struct Node));
(*head)->next=NULL;
srand(time(0));

for(i=0;i<n;i++)
{p=(struct Node*)malloc(sizeof(struct Node));
p->data=rand()%100+1;
p->next=(*head)->next;
(*head)->next=p;
}


void main()
{ struct Node *head;
   int n;
printf("请输入要输入多少个数:");
scanf("%d",&n);
createListhead(head,n);
printNode(head,n);

}

最后的魁拔 发表于 2020-4-5 22:09:22

本帖最后由 最后的魁拔 于 2020-4-5 22:12 编辑




#include<stdio.h>
#include<stdlib.h>
#include<time.h>
struct Node
{
      int data;
      struct Node *next;
};
void printNode(struct Node *head,int n);
void printNode(struct Node *head,int n)//打印单链表数据
{ int i;
printf("现在开始打印%d个数:",n);
head = head->next;                                        //你这个有头结点 先让head指向第一个真正的节点(不是头结点),
for(i=0;i<n;i++)
{
          printf("%d\t",head->data);
          head=head->next;
}
}
void createListhead(struct Node **head,int n);
void createListhead(struct Node **head,int n)//头插法创建单链表
{ int i;
struct Node *p;
*head=(struct Node*)malloc(sizeof(struct Node));
(*head)->next=NULL;
srand(time(0));

for(i=0;i<n;i++)
{p=(struct Node*)malloc(sizeof(struct Node));
p->data=rand()%100+1;
p->next=(*head)->next;
(*head)->next=p;
}

}                                //你这儿好像少了一个大括号
int main()
{ struct Node *head;
   int n;
printf("请输入要输入多少个数:");
scanf("%d",&n);
createListhead(&head,n);                        //因为要在函数里面改变head,所以要传入地址
printNode(head,n);
    system("pause");

    return 0;
}

最后的魁拔 发表于 2020-4-5 22:15:32

另外打印节点不是你这个打印的
void printNode(struct Node *head, int n) //打印单链表数据
{
    int i=0;
    printf("现在开始打印%d个数:", n);
    struct Node *p;

    for (p = head->next; p; p = p->next)
    {
      printf("%d----%d\n", i, p->data);
      i++;
    }
}

1298150336 发表于 2020-4-5 23:08:00

最后的魁拔 发表于 2020-4-5 22:09


十分感谢

1298150336 发表于 2020-4-5 23:09:45

最后的魁拔 发表于 2020-4-5 22:15
另外打印节点不是你这个打印的

可是我没有这样打印啊,你的意思是不是说不能这样打印节点?

最后的魁拔 发表于 2020-4-6 07:33:16

1298150336 发表于 2020-4-5 23:09
可是我没有这样打印啊,你的意思是不是说不能这样打印节点?

你这个也可以打印,但是不标准吧....我也讲不清楚,............

1298150336 发表于 2020-4-6 11:47:41

最后的魁拔 发表于 2020-4-6 07:33
你这个也可以打印,但是不标准吧....我也讲不清楚,............

谢谢

最后的魁拔 发表于 2020-4-6 13:46:12

1298150336 发表于 2020-4-6 11:47
谢谢

哥们,你大几了呢?咱两进度一样哈

1298150336 发表于 2020-4-11 18:51:09

最后的魁拔 发表于 2020-4-6 13:46
哥们,你大几了呢?咱两进度一样哈

我大一

最后的魁拔 发表于 2020-4-11 19:49:33

1298150336 发表于 2020-4-11 18:51
我大一

计算机专业的吗?

1298150336 发表于 2020-4-11 20:17:49

最后的魁拔 发表于 2020-4-11 19:49
计算机专业的吗?

数字媒体技术,有什么问题吗

1298150336 发表于 2020-4-11 20:18:47

最后的魁拔 发表于 2020-4-11 19:49
计算机专业的吗?

你呢?

最后的魁拔 发表于 2020-4-11 20:50:23

1298150336 发表于 2020-4-11 20:18
你呢?

这是你们教吗?还是你自学的

1298150336 发表于 2020-4-11 20:55:52

最后的魁拔 发表于 2020-4-11 20:50
这是你们教吗?还是你自学的

目前在自学,不清楚教不教。不过我的方向是打算做游戏,所以数据结构是必须的

1298150336 发表于 2020-4-11 20:56:29

最后的魁拔 发表于 2020-4-11 20:50
这是你们教吗?还是你自学的

不知道以后教不教,不过管他呢,我都要学啊

最后的魁拔 发表于 2020-4-11 21:02:26

1298150336 发表于 2020-4-11 20:56
不知道以后教不教,不过管他呢,我都要学啊

厉害{:10_257:}

1298150336 发表于 2020-4-11 21:04:05

最后的魁拔 发表于 2020-4-11 21:02
厉害

就是个小白而已

最后的魁拔 发表于 2020-4-11 21:04:37

1298150336 发表于 2020-4-11 21:04
就是个小白而已

你数据结构学到那了呢

1298150336 发表于 2020-4-11 21:05:45

最后的魁拔 发表于 2020-4-11 21:04
你数据结构学到那了呢

我才学到栈,我用的这个教材习题太多了

最后的魁拔 发表于 2020-4-11 21:06:36

1298150336 发表于 2020-4-11 21:05
我才学到栈,我用的这个教材习题太多了

麻烦分享一下,我想做题,,,,,,
页: [1] 2
查看完整版本: 礼貌求助关于打印单链表问题