在一个带头结点的单链表head中,若要将 s 所指结点插入在第一个结点之前,则执行()。
A: head->next=s;s->next=head;
B: s->next=head->next;head=s;
C: s->next=head;head->next=s;
D: s->next=head->next;head->next=s;
A: head->next=s;s->next=head;
B: s->next=head->next;head=s;
C: s->next=head;head->next=s;
D: s->next=head->next;head->next=s;
举一反三
- 在一个带头结点的单链表中,若 head 所指结点是头结点,若要删除第一个实际元素结点,则执行()。 A: p=head->next;head->next=p->next;free(p); B: p=head;free(p);head=head->next; C: head=head->next;p=head;free(p); D: p=head;head=head->next;free(p);
- 在一个带头结点的单链表head中,若要将 s 所指结点插入在第一个结点之前,则执行()。 A: head->next=s;s->next=head; B: s->next=head->next;head=s; C: s->next=head;head->next=s; D: s->next=head->next;head->next=s;
- 已知head是指向带头结点单链表的首指针,则删除线性表第一个实际结点(首结点)的操作是() A: p=head,head=p->next;free(p); B: p=head->next;free(p);head=head->next; C: p=head->next,head->next=p->next;free(p); D: free(head->next);head=head->next;
- 在带有头结点的单链表Head中,要向表头插入一个由指针p指向的结点,则执行( )。 A: Head=p;p->next=Head; B: p->next=Head->next; Head->next=p; C: p->next=Head; p=Head; D: p->next=Head; Head=p;
- 在带有头结点的单链表Head中,要向表头结点之后插入一个由指针p指向的结点,则执行( )。 A: p->next=Head->next; Head->next=p; B: p->next=Head; Head=p; C: p->next=Head; p=Head; D: Head=p;p->next=Head;