Question: Consider linear search again (see Exercise 2.1-3). How many elements of the input sequence need to be checked on the average, assuming that the element
Consider linear search again (see Exercise 2.1-3). How many elements of the input sequence need to be checked on the average, assuming that the element being searched for is equally likely to be any element in the array? How about in the worst case? What are the average-case and worst-case running times of linear search in Θ-notation? Justify your answers.
Exercise 2.1-3
Consider the searching problem:
Input: A sequence of n numbers A = 〈a1, a2,....,an〉 and a value ν.
Output: An index i such that ν = A[i] or the special value NIL if ν does not appear in A.
Write pseudocode for linear search, which scans through the sequence, looking for ν. Using a loop invariant, prove that your algorithm is correct. Make sure that your loop invariant fulfills the three necessary properties.
Step by Step Solution
3.34 Rating (154 Votes )
There are 3 Steps involved in it
According to the problem statement there are N elements in the array ie a1a2an Search Element v ... View full answer
Get step-by-step solutions from verified subject matter experts
