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
演算法設計、解讀與追蹤:練習題
5 條多項選擇題即時批改,另有 4 條文字題附完整解題步驟,全部圍繞「演算法設計、解讀與追蹤」。
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生成,可能並非總是準確或最新。請將其用作輔助資源,並與官方材料進行核實。
想多做幾條同類題目?立即開始練習呢個課題,即做即批改。
立即練習