在一个带头结点的单链表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的空循环链表中插入一个结点s,则指针s应执行操作( )。 A: head->next=s;s->next=NULL; B: s->next=head;head->next=NULL; C: head->next=s;s->next=head->next; D: s->next=head;head->next=s;
- 用头插法在头指针为head的带头结点单链表中,将s指向结点插入到链表中的操作是( ) A: head->next=s;s->next=head->next; B: s->next=head->next;head->next=S; C: head=s;s->next=head; D: s->next=head;head=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;