Pearson Edexcel IGCSE · Computer Science

Algorithms:练习题

5 道选择题即时批改,另有 4 道文字题附完整解题步骤,全部围绕「Algorithms」。

9 道题目24 免费,无需注册
第 1 题
1

A developer needs to search for a specific name in a sorted list of 10,000 entries. Why would they choose a binary search instead of a linear search?

第 2 题
1

How many times will the total variable be incremented in the following nested loop structure?
FOR \(i\) FROM 1 TO 4
  FOR \(j\) FROM 1 TO 3
    SET \(total\) TO \(total + 1\)
  ENDFOR
ENDFOR

第 3 题
1

Which of these is the primary purpose of using a trace table during the development of an algorithm?

第 4 题
1

What is the maximum number of comparisons a binary search algorithm would need to find a value in a sorted list of \(15\) elements?

第 5 题
1

Given the list \([5, 2, 8, 1]\), what will the list look like after the first complete pass of a standard ascending bubble sort?

第 6 题
3

State the specific requirement that must be met by a data set before a binary search algorithm can be successfully performed.

先自己写一遍答案,再对照解题步骤。

第 7 题
5

A sorted list contains 1,000 items. Determine the maximum number of comparisons required to find an item using a binary search and briefly justify your answer using powers of 2.

先自己写一遍答案,再对照解题步骤。

第 8 题
4

A list of 1,000 student IDs is stored in an array. The IDs are already sorted in ascending order.
(a) State which search algorithm would be more efficient to find a specific ID in this sorted list.
(b) Explain why this algorithm is more efficient than a linear search by comparing the maximum number of checks required for each method.

先自己写一遍答案,再对照解题步骤。

第 9 题
7

An array contains the following sequence of integers: [12, 5, 8, 2].
(a) Show the state of the array after each complete pass of a Bubble Sort algorithm until the numbers are in ascending order.
(b) Explain why a Merge Sort is generally considered more efficient than a Bubble Sort for very large datasets.

先自己写一遍答案,再对照解题步骤。

* thinka提供的内容由AI生成,可能并非总是准确或最新。请将其用作辅助资源,并与官方材料进行核实。

你已看过标准答案。现在轮到你的答案被批改。

这一页能告诉你好答案是什么样子,却无法指出你的答案缺了什么。thinka 按真实评分标准批改你的文字答案,约 15 秒完成。

想多做几道同类题目?立即开始练习这个课题,边做边批改。

立即练习