#G1160. 2024年03月 GESP C++ 五级

2024年03月 GESP C++ 五级

2024年03月 GESP C++ 五级

第 1 题

唯一分解定理描述的内容是({{ select(1) }})?

  • 任意整数都可以分解为素数的乘积
  • 每个合数都可以唯一分解为一系列素数的乘积
  • 两个不同的整数可以分解为相同的素数乘积
  • 以上都不对

第 2 题

贪心算法的核心思想是({{ select(2) }})?

  • 在每一步选择中都做当前状态下的最优选择
  • 在每一步选择中都选择局部最优解
  • 在每一步选择中都选择全局最优解
  • 以上都对

第 3 题

下面的 C++ 代码片段用于计算阶乘。请在横线处填入( ),实现正确的阶乘计算。

int factorial(int n) {
    if (n == 0 || n == 1) {
        return 1;
    } else {
        ________________________ // 在此处填入代码
    }
}

{{ select(3) }}

  • return n * factorial(n - 1);
  • return factorial(n - 1) / n;
  • return n * factorial(n);
  • return factorial(n / 2) * factorial(n / 2);

第 4 题

下面的代码片段用于在双向链表中删除一个节点。请在横线处填入( ),使其能正确实现相应功能。

void deleteNode(DoublyListNode*& head, int value) {
    DoublyListNode* current = head;
    while (current != nullptr && current->val != value) {
        current = current->next;
    }
    if (current != nullptr) {
        if (current->prev != nullptr) {
            ________________________ // 在此处填入代码
        } else {
            head = current->next;
        }
        if (current->next != nullptr) {
            current->next->prev = current->prev;
        }
        delete current;
    }
}

{{ select(4) }}

  • if (current->next != nullptr) current->next->prev = current->prev;
  • current->prev->next = current->next;
  • delete current->next;
  • current->prev = current->next;

第 5 题

辗转相除法也被称为({{ select(5) }})

  • 高斯消元法
  • 费马定理
  • 欧几里德算法
  • 牛顿迭代法

第 6 题

下面的代码片段用于计算斐波那契数列。该代码的时间复杂度是( )?

int fibonacci(int n) {
    if (n <= 1) {
        return n;
    } else {
        return fibonacci(n - 1) + fibonacci(n - 2);
    }
}

{{ select(6) }}

  • O(1)O(1)
  • O(n)O(n)
  • O(2n)O(2^n)
  • O(logn)O(\log n)

第 7 题

下面的代码片段用于将两个高精度整数进行相加。请在横线处填入( ),使其能正确实现相应功能。

string add(string num1, string num2) {
    string result;
    int carry = 0;
    int i = num1.size() - 1, j = num2.size() - 1;
    while (i >= 0 || j >= 0 || carry) {
        int x = (i >= 0) ? num1[i--] - '0' : 0;
        int y = (j >= 0) ? num2[j--] - '0' : 0;
        int sum = x + y + carry;
        carry = sum / 10;
        ________________________
    }
    return result;
}

{{ select(7) }}

  • result = to_string(sum % 10) + result;
  • result = to_string(carry % 10) + result;
  • result = to_string(sum / 10) + result;
  • result = to_string(sum % 10 + carry) + result;

第 8 题

给定序列:1,3,6,9,17,31,39,52,61,79,81,90,961, 3, 6, 9, 17, 31, 39, 52, 61, 79, 81, 90, 96。使用以下代码进行二分查找查找元素 8282 时,需要循环多少次,即最后输出的 times 值为( )。

int binarySearch(const std::vector<int>& arr, int target) {
    int left = 0;
    int right = arr.size() - 1;
    int times = 0;
    while (left <= right) {
        times++;
        int mid = left + (right - left) / 2;
        if (arr[mid] == target) {
            cout << times << endl;
            return mid;
        } else if (arr[mid] < target) {
            left = mid + 1;
        } else {
            right = mid - 1;
        }
    }
    cout << times << endl;
    return -1;
}

{{ select(8) }}

  • 2
  • 5
  • 3
  • 4

第 9 题

下面的代码片段用于判断一个正整数是否为素数。请对以下代码进行修改,使其能正确实现相应功能。( )

bool isPrime(int num) {
    if (num < 2) {
        return false;
    }
    for (int i = 2; i * i < num; ++i) {
        if (num % i == 0) {
            return false;
        }
    }
    return true;
}

{{ select(9) }}

  • num < 2 应该改为 num <= 2
  • 循环条件 i * i < num 应该改为 i * i <= num
  • 循环条件应该是 i <= num
  • 循环体中应该是 if (num % i != 0)

第 10 题

在埃拉托斯特尼筛法中,要筛选出不大于 nn 的所有素数,最外层循环应该遍历什么范围( )?

vector<int> sieveOfEratosthenes(int n) {
    std::vector<bool> isPrime(n + 1, true);
    std::vector<int> primes;
    ________________________
    {
        if (isPrime[i]) {
            primes.push_back(i);
            for (int j = i * i; j <= n; j += i) {
                isPrime[j] = false;
            }
        }
    }
    for (int i = sqrt(n) + 1; i <= n; ++i) {
        if (isPrime[i]) {
            primes.push_back(i);
        }
    }
    return primes;
}

{{ select(10) }}

  • for (int i = 2; i <= n; ++i)
  • for (int i = 1; i < n; ++i)
  • for (int i = 2; i <= sqrt(n); ++i)
  • for (int i = 1; i <= sqrt(n); ++i)

第 11 题

素数的线性筛法时间复杂度为({{ select(11) }})。

  • O(n)O(n)
  • O(nloglogn)O(n \log \log n)
  • O(nlogn)O(n \log n)
  • O(n2)O(n^2)

第 12 题

归并排序的基本思想是({{ select(12) }})。

  • 动态规划
  • 分治
  • 贪心算法
  • 回溯算法

第 13 题

在快速排序中,选择的主元素(pivot)会影响算法的({{ select(13) }})。

  • 不影响
  • 时间复杂度
  • 空间复杂度
  • 时间复杂度和空间复杂度

第 14 题

递归函数在调用自身时,必须满足({{ select(14) }}),以避免无限递归?

  • 有终止条件
  • 函数参数递减(或递增)
  • 函数返回值固定
  • 以上都对

第 15 题

假设给定链表为:$1 \rightarrow 3 \rightarrow 5 \rightarrow 7 \rightarrow \text{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(15) }}

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

第 16 题

辗转相除法用于求两个整数的最大公约数({{ select(16) }})。

  • 正确
  • 错误

第 17 题

插入排序的时间复杂度是 O(NlogN)O(N \log N)({{ select(17) }})。

  • 正确
  • 错误

第 18 题

二分查找要求被搜索的序列是有序的,否则无法保证正确性({{ select(18) }})。

  • 正确
  • 错误

第 19 题

使用贪心算法解决问题时,每一步的局部最优解一定会导致全局最优解({{ select(19) }})。

  • 正确
  • 错误

第 20 题

分治算法的核心思想是将一个大问题分解成多个相同或相似的子问题进行解决,最后合并得到原问题的解({{ select(20) }})。

  • 正确
  • 错误

第 21 题

分治算法的典型应用之一是归并排序,其时间复杂度为 O(NlogN)O(N \log N)({{ select(21) }})。

  • 正确
  • 错误

第 22 题

素数表的埃氏筛法和线性筛法的时间复杂度都是 O(NloglogN)O(N \log \log N)({{ select(22) }})。

  • 正确
  • 错误

第 23 题

贪心算法是一种可以应用于所有问题的通用解决方案({{ select(23) }})。

  • 正确
  • 错误

第 24 题

单链表和双链表都可以在常数时间内实现在链表头部插入或删除节点的操作({{ select(24) }})。

  • 正确
  • 错误

第 25 题

在 C 语言中,递归的实现方式通常会占用更多的栈空间,可能导致栈溢出({{ select(25) }})。

  • 正确
  • 错误