键盘输入造链表1

Posted wangyq0517

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了键盘输入造链表1相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <malloc.h>
//键盘输入造链表

struct wyq{
char name[100];
int age;
char address[100];
struct wyq*next;
};

int main()
{
struct wyq*
head;
struct wyq*p;
struct wyq*q;
int i;

head=(struct wyq*)malloc(sizeof(struct wyq));
if(NULL==head){
printf("没有申请成功");
exit(-1);
}

printf("输入链表节点内容:\n");
printf("姓名->");
scanf("%s",head->name);
printf("年龄->");
scanf("%s",head->age);
printf("地址->");
scanf("%s",head->address);
head->next=NULL;


p=head;
q=head;

printf("1;继续;2停止\n");
scanf("%d",&i);
while(i==1) {
p=(struct wyq*)malloc(sizeof(struct wyq));
printf("输入链表节点内容:\n");
printf("姓名->");
scanf("%s",p->name);
printf("年龄->");
scanf("%s",p->age);
printf("地址->");
scanf("%s",p->address);
p->next=NULL;

q->next=p;
q=p;

printf("1;继续;2停止\n");
scanf("%d",&i);

if(i==2){
break;
}
}


return 0;
}

以上是关于键盘输入造链表1的主要内容,如果未能解决你的问题,请参考以下文章

一个c语言的程序题?

UVa 11988 破损的键盘(链表)

成绩查询

PTA 6-14 用单向链表完成多项式运算 (35 分)

PTA 6-14 用单向链表完成多项式运算 (35 分)

链表元素的删除