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?
Pearson Edexcel IGCSE · Computer Science
Algorithms:练习题
5 道选择题即时批改,另有 4 道文字题附完整解题步骤,全部围绕「Algorithms」。
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
Which of these is the primary purpose of using a trace table during the development of an algorithm?
What is the maximum number of comparisons a binary search algorithm would need to find a value in a sorted list of \(15\) elements?
Given the list \([5, 2, 8, 1]\), what will the list look like after the first complete pass of a standard ascending bubble sort?
State the specific requirement that must be met by a data set before a binary search algorithm can be successfully performed.
先自己写一遍答案,再对照解题步骤。
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.
先自己写一遍答案,再对照解题步骤。
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.
先自己写一遍答案,再对照解题步骤。
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生成,可能并非总是准确或最新。请将其用作辅助资源,并与官方材料进行核实。
想多做几道同类题目?立即开始练习这个课题,边做边批改。
立即练习