好吧,那我等版主大佬明天帮我解答。也谢谢你哦。晚安
我只是才入门的新人
晚安 风骚的小胖子。 发表于 2018-10-11 22:51
#include
#include
#include
这是哪门子的尾插法?{:10_245:}#include<stdlib.h>
#include<string.h>
#include <stdio.h>
#include <malloc.h>
struct Book
{
char a;
struct Book *next;
};
struct Book *initList(char *a)
{
struct Book *p=(struct Book *)malloc(sizeof(struct Book));
strcpy(p->a,a);
p->next = NULL;
return p;
}
void append(struct Book *head, char *a)
{
struct Book *p = head;
struct Book *pNew = (struct Book *)malloc(sizeof(struct Book));
while(p->next)
p = p->next;
strcpy(pNew->a, a);
pNew->next = p->next;
p->next = pNew;
}
void printList(struct Book *head)
{
struct Book *p = head;
while(p)
{
printf("%s",p->a);
p = p->next;
}
}
int main(void)
{
struct Book *p = initList("ABC");
append(p,"DEF");
append(p,"GHI");
printList(p);
return 0 ;
} 风骚的小胖子。 发表于 2018-10-11 22:51
#include
#include
#include
我是针对你的代码,修改实现方式的。
结构体就长那个样,但如何实现是另外一回事。不同的需求需要做出调整。变量名字我换了,不要用拼音,一些单字学一学。不要用 p1 p2...
打印 print
初始化 init (initialization 的简写)
新 new // 但是 new 是关键字,程序保留了,不能用。 claws0n 发表于 2018-10-11 23:23
我是针对你的代码,修改实现方式的。
结构体就长那个样,但如何实现是另外一回事。不同的需求需要做出调 ...
哈哈。好的以后多跟大佬学习编程思维 还望大佬理解 菜鸟理解法嘿嘿
页:
1
[2]