单链表的创建程序(C语言)

 我来答
匿名用户
2008-03-27
展开全部
#include"stdio.h"
#include"malloc.h"
#define NULL 0
#define L sizeof(struct integer)
struct integer /*定义结构体*/
{
int num;
int zhengshu;
struct integer *next;
};
int n; //纪录链表的长度
struct integer *creat(void) /*创建链表*/
{
struct integer *head;
struct integer *p1,*p2;
n=0;
p1=p2=(struct integer *)malloc(L);
scanf("%d,%d",&p1->num,&p1->zhengshu);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct integer *)malloc(L);
scanf("%d,%d",&p1->num,&p1->zhengshu);
}
p2->next=NULL;
return(head);
}
...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9ba460c
2008-04-05
知道小有建树答主
回答量:25
采纳率:0%
帮助的人:0
展开全部
void creat() /*创建单链表*/
{int ch;
head=(struct node *)malloc(sizeof(struct node));
head->next=null;
p=head;
printf("请输入数据: ");
scanf("%d",&ch);
while(ch!=-1)
{s=(struct node *)malloc(sizeof(struct node));
s->data=ch;
s->next=null;
p->next=s;
p=s;
printf("请输入数据: ");
scanf("%d",&ch);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
0o闭关修炼o0
2008-03-26 · TA获得超过214个赞
知道答主
回答量:109
采纳率:0%
帮助的人:87.1万
展开全部
http://www.programfan.com/club/showpost.asp?id=55586&t=o

这个例子还不错,挺详细的 你看下吧
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
50573750
2008-03-26 · TA获得超过976个赞
知道大有可为答主
回答量:1800
采纳率:100%
帮助的人:0
展开全部
?自己看看书,别问树上有很多的、又没有技术含量的问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cxl870805
2008-03-26
知道答主
回答量:6
采纳率:0%
帮助的人:0
展开全部
问别人吧!我也不大懂。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式