Chapter 2: Divide-and-conquer algorithms
Q1E
Question: Use the divide-and-conquer integer multiplication algorithm to multiply the two binary integers
Q22E
You are given two sorted lists of size mandn. Give an
Q23E
An array
(a) Show how to solve this problem in
(b) Can you give a linear-time algorithm? (Hint: Here’s another divide-and-conquer approach:• Pair up the elements of
Q23E
An array A [1...n] 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, a A2 nd so there can be no comparisons of the form “is
(a) Show how to solve this problem in O(nlog n) time. (Hint: Split the array A into two arrays A1 and of half the size. Does knowing the majority elements of A1 and A2 help you figure out the majority element of A? 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 A arbitrarily, to get n/2 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 n/2 elements left, and that they have a majority element if A does.)
Q24E
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
Q25E
In Section 2.1 we described an algorithm that multiplies two n-bit binary integers x and y in time
(a) We want to convert the decimal integer
function pwr2bin(n)
if n = 1: return
else:
z= ???
return fastmultiply(z,z)
Fill in the missing details. Then give a recurrence relation for the running time of the algorithm, and solve the recurrence.
(b) Next, we want to convert any decimal integer x with n digits (where n is a power of 2) into binary. The algorithm is the following:
function dec2bin(x)
if n=1: return binary [ x ]
else:
split x into two decimal numbers
return ???
Here binary [.] is a vector that contains the binary representation of all one-digit integers. That is, binary role="math" localid="1659333641173"
Q26E
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?
Q27E
Thesquare of a matrix A is its product with itself, AA.
(a) Show that five multiplications are sufficient to compute the square of a 2 x 2 matrix.
(b) What is wrong with the following algorithm for computing the square of an n x n matrix?
“Use a divide-and-conquer approach as in Strassen’s algorithm, except that instead of getting 7 subproblems of size
(c) In fact, squaring matrices is no easier than matrix multiplication. In this part, you will show that if n x n matrices can be squared in time S(n) = O(nc), then any two n x n matrices can be multiplied in time O(nc) .
- Given two n x n matrices A and B, show that the matrix AB + BA can be computed in time 3S(n) + O(n2 ) .
- Given two n x n matrices X and Y, define the 2n x 2n matrices A and B,L as follows:
What is AB + BA, in terms of X and Y? - Using (i) and (ii), argue that the product XY can be computed in time 3S(2n) + O(n2 ). Conclude that matrix multiplication takes time O(nc ).
Q28E
The Hadamard matrices
- •
is the - For
matrix
localid="1658916810283"
Show that if
Q29E
Suppose we want to evaluate the polynomial P(x) = a0 + a1x + a2x2 + ... + anxn at point x.
- Show that the following simple routine, known as Horner’s rule, does the job and leaves the answer in z.
z = an
for I = n-1 down to 0 :
z = zx + ai - How many additions and multiplications does this routine use, as a function of n ? Can you find a polynomial for which an alternative method is substantially better?