This test is run by .
Note that your final mark will not be saved in the system.
Note that your final mark will not be saved in the system.
4 - Algorithms GapFill
Target Level
C
Running Total
0
0%
Attempt
1 of 3
You must fill all the gaps before clicking ‘Check Answers!’
Different search algorithms play to different strengths.
searches, which have a time complexity of
, begin at one end of a data structure, and iterate over it until the search term is found or all data items have been found. This is a useful algorithm for
data, unlike
searches, which begin
. Though more complex to code, this algorithm has time complexity of
, and it only works on
data.