在一个头结点为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;
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; B: s->next=head->next;head=s; C: s->next=head;head->next=s; D: s->next=head->next;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: Head=Nll B: Head->next=NULL C: Head->next=Head D: Head->next!=NULL
- 一个带头结点head的循环单链表为空的判断条件是____。 A: head==NULL B: head->next==NULL C: head->next==head D: head!=NULL
- 双向循环链表的头指针为head,若带头结点,则表空的条件是( )。 A: head->next= =NULL B: head= =NULL C: head->next==head或者head->prior==head