单项选择题
A.q->next=s->next;s->next=p; B.s->next=p;q->next=s->next; C.p->next=s->next;s->next=q; D.s->next=q;p->next=s->next;
A.head==NULL B.head->next==NULL C.head->next!=NULL D.head!=NULL
A.不再需要头指针 B.已知某结点位置后能容易找到其直接前驱 C.在进行插入、删除运算时能保证链表不断开 D.在表中任一结点出发都能扫描整个链表