TCP2101 Algorithm Design and Analysis Lab07 - Divide-and-Conquer
TCP2101 Algorithm Design and Analysis Lab07 - Divide-and-Conquer
Lab 7 Divide-and-Conquer
Learning Outcome
● Understand how Merge Sort works.
● Understand how Integer Multiplication works.
● Understand how to use Master Theorem to solve recurrence equation.
● Understand how Quick Select works.
1. [20 min] The following MergeSort algorithm is used to sort the array of 7 integers below.
Array: 96 48 91 94 31 77 2
The following C++ program shows the incomplete MergeSort algorithm. Implement and complete the program in
CodeBlocks. Compare the output of the program with the above table, is it the same?
// filename: mergesort.cpp
#include <iostream>
using namespace std;
if (p < r) {
// Divide: divide a into two nearly equal parts.
int m = (p + r) / 2;
// Recur: sort each half.
mergesort (A, Temp, p, m);
mergesort (A, Temp, m + 1, r);
// Conquer: merge the two sorted halves.
merge (A, Temp, p, m, r);
}
int main() {
// Put your code here!
const int n = 7;
int A[n] = {96, 48, 91, 94, 31, 77, 2};
cout << "Original Array: \n";
printArray(A, n);
startMergeSort(A, n);
cout << "Sorted Array: \n";
printArray(A, n);
return 0;
2
2. [20 min] Use the Improved Integer Multiplication technique to multiply 91x53. Assume that the processor can
efficiently multiple integer with single digit or 10 only. Use base 10 for the simplicity of human calculation.
I = Ih*10n/2 + Il
J = Jh*10n/2 + Jl
I*J = Ih*Jh*10n + [(Ih- Il)(Jl - Jh) + Ih*Jh + Il*Jl]10n/2 + Il*Jl
n = 2
lh = 9
Il = 1
Jh = 5
Jl = 3
Lh *Jh = 9*5 = 45
Il *Jl = 1*3 = 3
(Ih-I1)(J1 - Jh) = (9-1)(3-5) = 8(-2) = -16
91 x 53
= Ih*Jh*10n + [(Ih- Il)(Jl - Jh) + Ih*Jh + Il*Jl]10n/2 + Il*Jl
= 45*10^2 + [-16 + 45 + 3]10 + 3
= 4500 + [32]10 + 3
= 4500 + 320 + 3
= 4823
3
3. [40 min] Use Master Theorem to find the time complexity T(n) for the following recurrence equations.
Case 1: <
Case 2: =
Case 3: >
Case 3: n2log n > n^1 Case 2: n3 logk n where k = 0 Case 2: n4log4 n = n^4
Case 2 because we can make these
T(n) = n2log n T(n) = n3 logk+1 n = O(n3 log n) two equal where n4log4 n = n4 logk
where k =4
T(n) = n4 logk+1 n = O(n4log5 n)
d) T(n) = 7T(n/3) + n e) T(n) = 9T(n/3) + n3log n f) T(n) = 9T(n-1) + log n
4. [30 min] The following Quick-Select algorithm is used to find the k-th smallest element in the array below.
The pivot is selected from the last element of the current subarray. Assume the Partition function is stable.
Array: 31, 77, 4, 96, 42, 94, 55, 91, 66
(a) Use Quick-Select to find the 4th smallest element in the array. Fill in the table below based on the end of
each call to partition.
k = ___3_____.
(b) Use Quick-Select to find the 7th smallest element in the array. Fill in the table below based on the end of
each call to partition.
k = ____6____.
th
The 7 smallest element = _____91______.
T(n) = Theta(n)