已经L是一个不带表头的单链表,在表首插入结点*p的操作是()
A: p=L;p->next=L;
B: P->next=L;p=L;
C: p->next=L;L=p;
D: L=p;p->next=L;
A: p=L;p->next=L;
B: P->next=L;p=L;
C: p->next=L;L=p;
D: L=p;p->next=L;
举一反三
- 非空循环单链表L中,p指针指向尾结点,则以下表达式成立的是( )。 A: p->next==NULL B: p==NULL C: p->next==L D: p==L
- 若已建立以下链表结构,指针p、s分别指向如图所示结点。 则不能将s所指结点插入到链表末尾的语句组是______。 A: p=p->next; s ->next=p; p->next=s; B: s ->next='\0'; p=p->next; p->next=s; C: p=p->next; s ->next=p->next; p->next=s; D: p=(*p).next; (*s ).next=(*p).next; (*p).next=s;
- 在双向链表存储结构中,删除p所指的结点时须修改指针() A: (p->prior)->next=p->next;(p->next)->prior=p->prior; B: p->prior=(p->prior)->prior;(p->prior)->next=p; C: (p->next)->prior=p;p->rlink=(p->next)->next; D: p->next=(p->prior)->prior;p->prior=(p->next)->next
- P和Q两个指针分别指向双向循环链表L的两个元素,P所指元素是Q所指元素的后继的条件是( ) A: P==L B: Q->next==P C: P->prior==L D: Q->next==P->next
- 在一个以L为头的单循环链表中,p指针指向链尾的条件是( )。 A: p->next==L B: p->next==NULL C: p->next->next==L D: p->data==-1