主题:急呀
typedef struct node{
char data;
struct node *next;
}linkstrnode;
typedef linkstrnode *linkstring;中的*linkstring是什么意思
/*字符单链表的一些操作*/
#define NULL 0
typedef struct node
{char data;
struct node *next;
}linkstrnode;
typedef linkstrnode *linkstring;
void strcreate(linkstring *s)/*建单链表并插入字符*/
{char ch;
linkstrnode *p,*r;
*s=NULL;
r=NULL;
while((ch=getchar())!='\n')
{p=(linkstrnode*)malloc(sizeof(linkstrnode));
p->data=ch;
if(*s==NULL)
*s=p;
else r->next=p;
r=p;
}
if(r!=NULL) r->next=NULL;
}
void strprint(linkstring *s)
{linkstring p;
p=*s;
if(!p)printf("is empty");
else
while(p)
{printf("%2c",p->data);p=p->next;}
}
main()
{linkstring *q;
strcreate(q);/*调用链式串*/
strprint(q);/*打印链式串*/
getch();
}
我哪里调用错了,谢谢指点
char data;
struct node *next;
}linkstrnode;
typedef linkstrnode *linkstring;中的*linkstring是什么意思
/*字符单链表的一些操作*/
#define NULL 0
typedef struct node
{char data;
struct node *next;
}linkstrnode;
typedef linkstrnode *linkstring;
void strcreate(linkstring *s)/*建单链表并插入字符*/
{char ch;
linkstrnode *p,*r;
*s=NULL;
r=NULL;
while((ch=getchar())!='\n')
{p=(linkstrnode*)malloc(sizeof(linkstrnode));
p->data=ch;
if(*s==NULL)
*s=p;
else r->next=p;
r=p;
}
if(r!=NULL) r->next=NULL;
}
void strprint(linkstring *s)
{linkstring p;
p=*s;
if(!p)printf("is empty");
else
while(p)
{printf("%2c",p->data);p=p->next;}
}
main()
{linkstring *q;
strcreate(q);/*调用链式串*/
strprint(q);/*打印链式串*/
getch();
}
我哪里调用错了,谢谢指点