填空题

typedef struct node{Datatype data;struct node*next;}LinkList;定义的单链表中节点a,b 前后相邻且b 为非尾节点,则删除结点b 的操作为()。

【参考答案】

a.next = b.next; free(b);