礼貌求助关于打印单链表问题
这段代码我不知道错在哪里,望告知,十分感谢#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: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;
}
另外打印节点不是你这个打印的
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++;
}
} 最后的魁拔 发表于 2020-4-5 22:09
十分感谢 最后的魁拔 发表于 2020-4-5 22:15
另外打印节点不是你这个打印的
可是我没有这样打印啊,你的意思是不是说不能这样打印节点? 1298150336 发表于 2020-4-5 23:09
可是我没有这样打印啊,你的意思是不是说不能这样打印节点?
你这个也可以打印,但是不标准吧....我也讲不清楚,............ 最后的魁拔 发表于 2020-4-6 07:33
你这个也可以打印,但是不标准吧....我也讲不清楚,............
谢谢 1298150336 发表于 2020-4-6 11:47
谢谢
哥们,你大几了呢?咱两进度一样哈 最后的魁拔 发表于 2020-4-6 13:46
哥们,你大几了呢?咱两进度一样哈
我大一 1298150336 发表于 2020-4-11 18:51
我大一
计算机专业的吗? 最后的魁拔 发表于 2020-4-11 19:49
计算机专业的吗?
数字媒体技术,有什么问题吗 最后的魁拔 发表于 2020-4-11 19:49
计算机专业的吗?
你呢? 1298150336 发表于 2020-4-11 20:18
你呢?
这是你们教吗?还是你自学的 最后的魁拔 发表于 2020-4-11 20:50
这是你们教吗?还是你自学的
目前在自学,不清楚教不教。不过我的方向是打算做游戏,所以数据结构是必须的 最后的魁拔 发表于 2020-4-11 20:50
这是你们教吗?还是你自学的
不知道以后教不教,不过管他呢,我都要学啊 1298150336 发表于 2020-4-11 20:56
不知道以后教不教,不过管他呢,我都要学啊
厉害{:10_257:} 最后的魁拔 发表于 2020-4-11 21:02
厉害
就是个小白而已 1298150336 发表于 2020-4-11 21:04
就是个小白而已
你数据结构学到那了呢 最后的魁拔 发表于 2020-4-11 21:04
你数据结构学到那了呢
我才学到栈,我用的这个教材习题太多了 1298150336 发表于 2020-4-11 21:05
我才学到栈,我用的这个教材习题太多了
麻烦分享一下,我想做题,,,,,,
页:
[1]
2