语法错误: 缺少’{’之前’ * ’怎么回事
#include<stdio.h>TYPE *delete(TYPE * head,int num)
{
TYPE *pf,*pb;
if(head==NULL)/*如为空表,输出提示信息*/
{ printf("\nempty list!\n");
goto end;}
pb=head;
while(pb->num!=num&&pb->next!=NULL)
/*当不是要删除的结点,而且也不是最后一个结点时继续循环*/
{pf=pb;pb=pb->next;}/*pf指向当前结点,pb指向下一个结点*/
if(pb->num==num)
{if(pb==head) haed=pb->next;
/*如找到被删结点,且为第一结点,则使head指向第二个结点否则使pf所指结点的指针指向下一个结点 */
else pf->next=pb->next;
free(pb);
printf("The node is deleted\n");}
}
else
printf("The node not been foud!\n");
end:
return head;
}