编程题
设计算法,在不带头结点的单链表 L 上实现删除 data 域值为 x 的所有结点, 返回删除结点的个数;
int List_Delete(struct LNode *L,KeyType x)
【正确答案】
【答案解析】
提交答案
关闭