在下面數(shù)組a中鏈接存儲著一個線性表,表頭指針為a[0].next,則該線性表為()。
A.p=q->next;p->next=q->next; B.p=q->next;q->next=p; C.p=q->next;q->next=p->next; D.q->next=q->next->next;q->next=q;