Discrete Mathematics and Its Applications, Seventh Edition

Published by McGraw-Hill Education
ISBN 10: 0073383090
ISBN 13: 978-0-07338-309-5

Chapter 8 - Section 8.3 - Divide-and-Conquer Algorithms and Recurrence Relations - Exercises - Page 535: 2

Answer

7 comparisons

Work Step by Step

Let $f (n)$ be the quantity of examinations required in a binary search of a rundown of $n $components. We know that recurrence relation for binary search with $n$ elements is: $f(n) = f(n/2) +2$. In this manner $f(128) = f(64) + 2$ $=f(64) = f(32 +2) + 2$ $= (f(16) + 4) +2 $ $= (f(8) + 6) +2$ $=( f(4) + 8) +2 $ $ = (f(2) + 10) +2$ $= (f(1) + 12) +2 $ $f(1)=2$ since two comparisons are required for one number so $= 2 + 14 $ $= 16$ So 7 comparisons are needed for a binary search in a set of 128 elements
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.