题目内容

假设某个不设头指针的无头结点单向循环链表的长度大于1,S为指向链表中某个结点的指针。算法f30的功能是,删除并返回链表中指针S所指结点的前驱。请在空缺处填入合适的内容,使其成为完整的算法。
typedef struct node{
DataType data;
struct node *next;
}*LinkList;
DataType f 30(LinkList s){
LinkList pre,p;
DataType e;
pre=s;
p=s—>next;
while((1) ){
pre=p;
(2) ;
}
pre—>next= (3) ;
e=p—>data;
free(p);
return e;
}

查看答案
更多问题

What does the description of the restaurant suggest?

根据检查范围的不同,统计执法检查可以分为()。

实施启发式教学,关键在于(),它指的是具有一定难度需要学生克服,又是学生力所及的学习情境。

If people undergo______from their emotions, thoughts or behavior, they may be suffering from mental disease.

答案查题题库