用头插法在头指针为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;
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中,若要将 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;
- 13.用头插法在头指针为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,指向尾结点指针r的带头结点单链表中,将s指向结点插入到链表中的操作是() A: =s;r->next=s; B: ->next=s;r=s; C: head=s;r=s; D: =s;head=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;