题目信息

题目类型
练习
题目年份
2024
题目题型
单选题
关 键 词
语句

题目题干

有说明语句:gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
Struct Node{ int data; Node * next; };gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
Node *head, *p,*q, *s;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
并且,head是单向链表的头指针,p指向链表中的节点,q指向*p的前驱节点。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
1.在*p之后插入节点*s的操作是(    )。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(A)p->next=s;  s->next=p->next;                  (B)s->next=p-next;  p->next=s;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(C)p =s->next;  s =p->next;                           (D)s =p->next;  p =s->next;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
2.在*p之前插入节点*s的操作是(    )。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(A)q =s->next;  s =p->next;                           (B)q->next=s;  s->next=p;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(C)s=p->next;  q=s->next;                   (D)s->next=p;  q->next=s;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
3.在*hear之前插入节点*s的操作是(    )。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(A)s->next=head;  head=s;                   (B)s->next=head->next;  head->next=s;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(C)head=s;  s->next=head;                    (D)head->next=s;  s->next=head->next;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
4.删除*p节点的操作是(    )。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(A)q = p; delete p;                                             (B)p = q; delete q;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(C)q->next=p->next; delete p;                         (D)p->next = q->next; delete q;       gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
5.删除*(head->next)的操作是(    )。gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(A)p=head->next; head->next=head->next->next; delete p;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(B)head->next=head->next->next; p=head->next; delete p;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(C)p=head; head=head->next; delete p;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
(D)head=head->next; p=head; delete p;gPm100150满分答卷(100150.com)-青少年编程等级考试及竞赛题库
 

答案解析

相关题目

提示声明

  • 免责声明:本站资源均来自网络或者用户投稿,仅供用于学习和交流:如有侵权联系删除!
  • 温馨提示:本文属于积分文章,需要充值获得积分或升级VIP会员,也可在会员中心投稿获取。

猜你喜欢