标题:[求助]简单的连表题
只看楼主
mp3aaa
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:2013
专家分:8
注 册:2006-2-15
结帖率:83.33%
 问题点数:0 回复次数:3 
[求助]简单的连表题

着里面有好多错误
帮忙看看 怎么改
#include"stdio.h"
#include"stdlib.h"
struct slist
{
int data;
struct slist *next;
};
typedef struct slist SLIST;
SLIST *creat() ;
void print(SLIST *head) ;

main()
{
SLIST *head;
head=creat();
print(head);
}
SLIST *creat()
{
int c;
SLIST *h,*s,*r;
h=(SLIST*)malloc(sizeof(SLIST));
r=h;
scanf("%d",&c);
while(c!=-1)
{
s=(SLIST*)malloc(sizeof(SLIST));
s.data=c;
r.next=s;
r=s;
scanf("%d",&c);
}
r.next='\0';
return h;
}
void print(SLIST *head)
{
SLIST *p;
p=head.next;
if(p=='\0')
printf("连表为空\n");
else{
printf("head");
double{
printf("->%d",p.data);
p=p.next;
}
while(p!='\0');
printf("->end\n");
}
}

搜索更多相关主题的帖子: head next include 
2006-11-16 22:05
unicorn
Rank: 4
等 级:贵宾
威 望:14
帖 子:1066
专家分:0
注 册:2005-10-25
得分:0 

错的是概念上的问题
指针类型应该用"->" 来操作的,给你改完了


#include\"stdio.h\"
#include\"stdlib.h\"
#include\"malloc.h\"
struct slist
{
int data;
struct slist *next;
};
typedef struct slist SLIST;
SLIST *creat();
void print(SLIST *head);

int main()//养成习惯便于以后象C++过渡
{
SLIST *head;
head=creat();
print(head);
return 0;
}
SLIST *creat()
{
int c;
SLIST *h,*s,*r;
h=(SLIST*)malloc(sizeof(SLIST));
h->next=NULL;//链表中尽量用NULL表示结尾 或者在程序前宏定义#define null 0
r=h;
scanf(\"%d\",&c);
while(c!=-1)
{
s=(SLIST*)malloc(sizeof(SLIST));
s->data=c;//指针类型注意\"->\"
s->next=r->next;
r->next=s;
r=s;
scanf(\"%d\",&c);
}
return h;
}
void print(SLIST *head)
{
SLIST *p,*q;
p=head->next;
if(p==NULL)
printf(\"连表为空\n\");
while(p!=NULL)
{
printf(\"%d->\",p->data);
q=p;
p=p->next;
free(q);//输出后记得释放节点,节约内存
}
printf(\"NULL\n\");
}



unicorn-h.spaces. ◇◆ sava-scratch.spaces.  noh enol ! pue pu!w hw u! shemle aq ll!m noh 
2006-11-17 11:46
mp3aaa
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:2013
专家分:8
注 册:2006-2-15
得分:0 


羊肉串 葡萄干 哈密瓜!!
2006-11-17 22:58
zxd198778
Rank: 1
等 级:新手上路
帖 子:99
专家分:0
注 册:2006-7-30
得分:0 
斑竹就是斑竹啊
不一般

我一个不懂世事的人,希望能在这里学到我想学的一些东西。
2006-11-18 01:00



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-103467-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.421555 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved