Chapter 2: Q26E (page 88)
Professor F. Lake tells his class that it is asymptotically faster to square an -bit integer than to multiply two n-bit integers. Should they believe him?
Short Answer
No, the statement of Professor F. Lake is wrong.
Chapter 2: Q26E (page 88)
Professor F. Lake tells his class that it is asymptotically faster to square an -bit integer than to multiply two n-bit integers. Should they believe him?
No, the statement of Professor F. Lake is wrong.
All the tools & learning materials you need for study success - in one app.
Get started for freeAn array is said to have a majority element if more than half of its entries are the same. Given an array, the task is to design an efficient algorithm to tell whether the array has a majority element, and, if so, to find that element. The elements of the array are not necessarily from some ordered domain like the integers, and so there can be no comparisons of the form “ is ?”. (Think of the array elements as GIF files, say.) However you can answer questions of the form: “is ..?” in constant time.
(a) Show how to solve this problem in time. (Hint: Split the array into two arrays and of half the size. Does knowing the majority elements of and help you figure out the majority element of ? If so, you can use a divide-and-conquer approach.)
(b) Can you give a linear-time algorithm? (Hint: Here’s another divide-and-conquer approach:• Pair up the elements of arbitrarily, to get pairs• Look at each pair: if the two elements are different, discard both of them; if they are the same, keep just one of them . Show that after this procedure there are at most elements left, and that they have a majority element if does.)
Practice with the fast Fourier transform.
(a) What is the FFT of (1,0,0,0)? What is the appropriate value of in this case? And of which sequence is (1,0,0,0)the FFT?
(b)Repeat for (1,0,1,-1).
Suppose we want to evaluate the polynomial P(x) = a0 + a1x + a2x2 + ... + anxn at point x.
Question: On page 66 there is a high-level description of the quicksort algorithm.
(a) Write down the pseudocode for quicksort.
(b) Show that its worst - case running time on an array of size n is .
(c) Show that its expected running time satisfies the recurrence relation.
Then, show that the solution to this recurrence is .
In this problem we will develop a divide-and-conquer algorithm for the following geometric task.
CLOSEST PAIRInput: A set of points in the plane,
Output: The closest pair of points: that is, the pair for which the distance between and , that is,
,
is minimized.
For simplicity, assume that n is a power of two, and that all the x-coordinates role="math" localid="1659237354869" are distinct, as are the y-coordinates.
Here’s a high-level overview of the algorithm:
.Find a value for which exactly half the points have , and half have . On this basis, split the points into two groups, L and R.
• Recursively find the closest pair in L and in R. Say these pairs are and with distances and respectively. Let d be the smaller of these two distances.
• It remains to be seen whether there is a point in Land a point in R that are less than distance dapart from each other. To this end, discard all points with or and sort the remaining points by y-coordinate.
• Now, go through this sorted list, and for each point, compute its distance to the seven subsequent points in the list. Let be the closest pair found in this way.
• The answer is one of the three pairs role="math" localid="1659237951608" , whichever is closest.
(a) In order to prove the correctness of this algorithm, start by showing the following property: any square of size in the plane contains at most four points of L.
(b) Now show that the algorithm is correct. The only case which needs careful consideration is when the closest pair is split between L and R.
(c) Write down the pseudocode for the algorithm, and show that its running time is given by the recurrence:
Show that the solution to this recurrence is .
(d) Can you bring the running time down to ?
What do you think about this solution?
We value your feedback to improve our textbook solutions.