单链表的创建程序(C语言)
5个回答
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);
}
...
略
#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);
}
...
略
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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);
}
}
{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);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
?自己看看书,别问树上有很多的、又没有技术含量的问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询