Computer Science for IGCSE & O level - Algorithm Design And Problem Solving (Section 9 - No. 4)
What are some of the key steps to implement a linear search algorithm?
Iterate through each element in a list.
Compare each element with the search target.
Sorting the list first.
Return the position of the element when found or indicate it is not present.
Explanation
Linear Search requires an iteration, comparing and reporting findings.
Comments (0)
