码迷,mamicode.com
首页 > 其他好文 > 详细

键盘输入造链表1

时间:2016-06-07 17:50:41      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

#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

标签:

原文地址:http://www.cnblogs.com/wangyuqi/p/5567773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!