程序已经修改调试完成,主要是Printlist的问题:
#include
#include
#include
typedef struct node{
char data;
struct node *next;
}Lnode,*Linklist;
void Initlist(Linklist L)
{
L=(Linklist)malloc(sizeof(Lnode));
L->next=NULL;
}
void Createlist(Linklist L)
{
Linklist p,newp;
int cnt=1;
p=(Lnode*)malloc(sizeof(Lnode));
L->next=p;
p->data='A';
for(;cnt<26;cnt++) //有改动
{
newp=(Lnode*)malloc(sizeof(Lnode));
p->next=newp;
newp->next=NULL;
newp->data=(p->data)+1;
p=p->next;
}
}
void Printlist(Linklist L) //有改动
{
Linklist p=L->next;
while(p)
{
printf("%c",p->data);
p=p->next;
}
printf("\n");
}
int main()
{
Lnode L;
Initlist(&L);
Createlist(&L);
Printlist(&L);
return 0;
}