The product codes for an inventory system are stored in an array with the identifier inventory.
| Index | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
|---|---|---|---|---|---|---|---|---|
| Data | "A10" | "B22" | "C35" | "D41" | "E59" | "F62" | "G73" | "H88" |
A linear search function is used to check whether a product code is present in the inventory array. The function:
True if the product code is found in the arrayFalse if the product code is not found in the array.Complete the design of the algorithm for this linear search function.
function findProduct(searchCode)
for index = 0 to .....
if inventory[.....] == ..... then
return .....
endif
next index
return False
endfunction
36 exam-style questions on OCR GCSE Computer Science Searching and sorting algorithms. Each one has a worked solution and a mark scheme showing where the marks go.