[讨论]如何转换成用C来描述的程序
从表尾插入结点建立单链表-----------怎么用main()来调用这个函数啊!
NODEPTR createback_lklist(NODEPTR L)
{ NODEPTR p,q;
int i,n;
elemtype e;
L=(NODEPTR)malloc(LEN);
L->next=NULL;
q=L;
printf("Please input the length of the linklist:");
scanf("%d",&n);
printf("Please input the every element:");
for(i=1;i<=n;i++)
{ p=(NODEPTR)malloc(LEN);
scanf("%d",&e);
p->data=e;
q->next=p;
q=p;
}
q->next=NULL;
return L;
}