Question: Many computer applications involve searching through a set of data and sorting the data. A number of efficient searching and sorting algorithms have been devised
1. Consider the following binary search algorithm (a classic divide and conquer algorithm) that searches for a value X in a sorted N-element array A and returns the index of matched entry:
![BinarySearch(A[0..N-1], X) { low = 0 high = N -1 while (low <= high) { mid = (1ow + high) / 2 if (A[mid] >X) high = mid](https://dsd5zvtm8ll6.cloudfront.net/si.question.images/images/question_images/1544/6/0/6/8865c10d4a6538ac1544534810652.jpg)
Assume that you have Y cores on a multi-core processor to run BinarySearch. Assuming that Y is much smaller than N, express the speedup factor you might expect to obtain for values of Y and N. Plot these on a graph.
2.Next, assume that Y is equal to N. How would this affect your conclusions in your previous answer? If you were tasked with obtaining the best speedup factor possible (i.e., strong scaling), explain how you might change this code to obtain it.
BinarySearch(A[0..N-1], X) { low = 0 high = N -1 while (low X) high = mid -1 else if (A[mid]
Step by Step Solution
3.41 Rating (151 Votes )
There are 3 Steps involved in it
1 While binary search has very good serial performance it is difficult to parallelize without modify... View full answer
Get step-by-step solutions from verified subject matter experts
