设指针变量p指向单链表中结点
A,若删除单链表中结点
A,则需要修改指针的操作序列为()。
Aq=p->next;p->data=q->data;p->next=q->next;free(q);
Bq=p->next;p->data=q->data;free(q);
Cq=p->next;p->next=q->next;free(q);
Dq=p->next;q->data=p->data;p->next=q->next;free(q);
Aq=p->next;p->data=q->data;p->next=q->next;free(q);
Bq=p->next;p->data=q->data;free(q);
Cq=p->next;p->next=q->next;free(q);
Dq=p->next;q->data=p->data;p->next=q->next;free(q);