题库 C++/C语言题库 题目列表 假设给定链表为: 1→3→5→7→nullptr ,若调⽤sear...
单选题

假设给定链表为: 1→3→5→7→nullptr  ,若调⽤searchValue(head, 5) ,函数返回值为(  ) 。

1 int searchValue(ListNode* head, int target) {
2  while (head != nullptr) {
3   if (head->val == target) {
4    return 1;
5   }
6   head = head->next;
7  }
8  return 0;
9 }
A.

返回1

B.

返回0

C.

死循环 ,⽆法返回

D.

返回 - 1

题目信息
C++语言等级考试真题 2024年 五级 选择题
66%
正确率
0
评论
90
点击