题目内容
阅读下面的程序,说明程序的具体功能。typedef int elemtype;typedef struct node{elemtype data;struct node *next;}linklist;void function(linklist *head,elemtype x){linklist *q,*p;q=head;p=q->next;while((p!=NULL)&&(p->data!=x)){q=p;p=p->next;}if(p==NULL)printf("There is no this node!\n");else{q->next=p->next;free(p);}}/*function*/该程序完成了什么功能?
查看答案
搜索结果不匹配?点我反馈