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;
内容
- 0
在一个带头结点的单链表中,若 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);
- 1
在带有头结点的单链表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;
- 2
在一个带头结点的单链表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;
- 3
带头结点的单向链表的头指针为head,该链表为空的判定条件是()的值为真。 A: head==NULL B: head->next==head C: head->next==NULL D: head==head->next
- 4
带头结点的单链表(以head为头指针)为空判断条件是( )。 A: head!=NULL B: head->next==head C: head->next==NULL D: head==NULL