已知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;
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;
举一反三
- 在一个带头结点的单链表中,若 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中,要向表头插入一个由指针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;
- 已知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;
- 对于一个头指针为head的带头结点的单链表,能够使p指向第1个结点的操作是:( ) A: p=head; B: p=head->next; C: p->next=head->next; D: head->next=p->next;
- 对于一个非空的循环单链表,若头指针为head,假设指针myrear指向表中的最后一个结点,如果要在非空的循环单链表的最前面插入一个新结点p,则执行( )。 A: p->next=head;myrear->next=p;head=p; B: head->next=p;myrear->next=p;head=p; C: myrear->next=p;head=p;head->next=p; D: myrear->next=p;head=p;p->next=head;