Sort the sequence 3, 1, 4, 1, 5, 9, 2, 6, 5 using insertion sort
Read moreTextbook Solutions for Data Structures and Algorithm Analysis in Java
Question
There is a prize hidden in a box; the value of the prize is a positive integer between1 and N, and you are given N. To win the prize, you have to guess its value. Yourgoal is to do it in as few guesses as possible; however, among those guesses, youmay only make at most g guesses that are too high. The value g will be specified atthe start of the game, and if you make more than g guesses that are too high, youlose. So, for example, if g = 0, you then can win in N guesses by simply guessingthe sequence 1, 2, 3, ....a. Suppose g = logN. What strategy minimizes the number of guesses?b. Suppose g = 1. Show that you can always win in O( N1/2 ) guesses.c. Suppose g = 1. Show that any algorithm that wins the prize must use ( N1/2 )guesses. d. Give an algorithm and matching lower bound for any constant g.
Solution
The first step in solving 7 problem number 60 trying to solve the problem we have to refer to the textbook question: There is a prize hidden in a box; the value of the prize is a positive integer between1 and N, and you are given N. To win the prize, you have to guess its value. Yourgoal is to do it in as few guesses as possible; however, among those guesses, youmay only make at most g guesses that are too high. The value g will be specified atthe start of the game, and if you make more than g guesses that are too high, youlose. So, for example, if g = 0, you then can win in N guesses by simply guessingthe sequence 1, 2, 3, ....a. Suppose g = logN. What strategy minimizes the number of guesses?b. Suppose g = 1. Show that you can always win in O( N1/2 ) guesses.c. Suppose g = 1. Show that any algorithm that wins the prize must use ( N1/2 )guesses. d. Give an algorithm and matching lower bound for any constant g.
From the textbook chapter Sorting you will find a few key concepts needed to solve this.
Visible to paid subscribers only
Step 3 of 7)Visible to paid subscribers only
full solution