#3383. [GESP202403 五级 C++] 第 15 题

[GESP202403 五级 C++] 第 15 题

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

int searchValue(ListNode* head, int target) {
    while (head != nullptr) {
        if (head->val == target) {
            return 1;
        }
        head = head->next;
    }
    return 0;
}

{{ select(1) }}

  • 返回 1
  • 返回 0
  • 死循环,无法返回
  • 返回 -1