Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the searching problem : Input: A sequence of n numbers A= a 1 , a 2 ,, a n and a value v .

Consider the searching problem:

Input: A sequence of nimage text in transcribed numbers A=a1,a2,,animage text in transcribed and a value vimage text in transcribed.

Output: An index iimage text in transcribed such that v=A[i]image text in transcribed or the special value NIL if vimage text in transcribed does not appear in Aimage text in transcribed.

  1. Write the pseudocode for linear search, which scans through the sequence, looking for vimage text in transcribed. State the asymptotic bound of its running time, and briefly explain why.
  2. If the sequence Aimage text in transcribed is sorted, we can check the midpoint of the sequence against vimage text in transcribed and eliminate half of the sequence from further consideration. The binary search algorithm repeats this procedure, halving the size of the remaining portion of the sequence each time. Write the pseudocode for binary search, either iterative or recursive.
  3. Write the recurrence of binary search algorithm, and then use master theorem to find its solution.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions