ch04 1
ch04 1
1
3 Types of Decrease and Conquer
Decrease by a constant (usually by 1):
• insertion sort
• topological sorting
• algorithms for generating permutations, subsets
Variable-size decrease
• Euclid’s algorithm
• selection by partition
• Nim-like games 2
What’s the difference?
Consider the problem of exponentiation: Compute an
Brute Force:
Decrease by one:
3
Insertion Sort
To sort array A[0..n-1], sort A[0..n-2] recursively and
then insert A[n-1] in its proper place among the sorted
A[0..n-2]
Example: Sort 6, 4, 1, 8, 5
6|4 1 8 5
4 6|1 8 5
1 4 6|8 5
1 4 6 8|5
1 4 5 6 8
4
Pseudocode of Insertion Sort
5
Analysis of Insertion Sort
Time efficiency
Cworst(n) = n(n-1)/2 Θ(n2)
Cavg(n) ≈ n2/4 Θ(n2)
Cbest(n) = n - 1 Θ(n) (also fast on almost sorted arrays)
Stability: yes
a b a b
a dag not a dag
c d c d
tiger
human
fish
sheep
shrimp
plankton wheat
8
DFS-based Algorithm
DFS-based algorithm for topological sorting
• Perform DFS traversal, noting the order vertices are
popped off the traversal stack
• Reverse order solves topological sorting problem
• Back edges encountered?→ NOT a dag!
Example:
a b c d
e f g h
Efficiency:
9
Source Removal Algorithm
Source removal algorithm
Repeatedly identify and remove a source (a vertex with no
incoming edges) and all the edges incident to it until either
no vertex is left (problem is solved) or there is no source
among remaining vertices (not a dag)
Example:
a b c d
e f g h
Example: n=3
start 1
insert 2 into 1 right to left 12 21
insert 3 into 12 right to left 123 132 312
insert 3 into 21 left to right 321 231 213
11
Other permutation generating algorithms
12
Generating Subsets
Binary reflected Gray code: minimal-change algorithm for
generating 2n bit strings corresponding to all the subsets of
an n-element set where n > 0
If n=1 make list L of two bit strings 0 and 1
else
generate recursively list L1 of bit strings of length n-1
copy list L1 in reverse order to get list L2
add 0 in front of each bit string in list L1
add 1 in front of each bit string in list L2
append L2 to L1 to get L
return L
13
Decrease-by-Constant-Factor Algorithms
In this variation of decrease-and-conquer, instance size
is reduced by the same factor (typically, 2)
Examples:
• binary search and the method of bisection
• exponentiation by squaring
• fake-coin puzzle
• Josephus problem
14
Binary Search
Very efficient algorithm for searching in sorted array:
K
vs
A[0] . . . A[m] . . . A[n-1]
If K = A[m], stop (successful search); otherwise, continue
searching by the same method in A[0..m-1] if K < A[m]
and in A[m+1..n-1] if K > A[m]
l 0; r n-1
while l r do
m (l+r)/2
if K = A[m] return m
else if K < A[m] r m-1
else l m+1
return -1
15
Analysis of Binary Search
Time efficiency
• worst-case recurrence: Cw (n) = 1 + Cw( n/2 ), Cw (1) = 1
solution: Cw(n) = log2(n+1)
n * m = n – 1 * 2m + m if n > 1 and m if n = 1
2
18
Example of Russian Peasant Multiplication
Compute 20 * 26
n m
20 26
10 52
5 104 104
2 208 +
1 416 416
520
19
Fake-Coin Puzzle (simpler version)
There are n identically looking coins one of which is fake.
There is a balance scale but there are no weights; the scale can
tell whether two sets of coins weigh the same and, if not, which
of the two sets is heavier (but not by how much). Design an
efficient algorithm for detecting the fake coin. Assume that
the fake coin is known to be lighter than the genuine ones.
20
Variable-Size-Decrease Algorithms
Examples:
• Euclid’s algorithm for greatest common divisor
• partition-based algorithm for selection problem
• interpolation search
• some algorithms on binary search trees
• Nim and Nim-like games
21
Euclid’s Algorithm
Euclid’s algorithm is based on repeated application of equality
gcd(m, n) = gcd(n, m mod n)
One can prove that the size, measured by the second number,
decreases at least by half after two consecutive iterations.
Hence, T(n) O(log n)
22
Selection Problem
Find the k-th smallest element in a list of n numbers
k = 1 or k = n
median: k = n/2
Example: 4, 1, 10, 9, 7, 12, 8, 2, 15 median = ?
23
Digression: Post Office Location Problem
24
Algorithms for the Selection Problem
The sorting-based algorithm: Sort and return the k-th element
Efficiency (if sorted by mergesort): Θ(nlog n)
26
Lomuto’s Partitioning Algorithm
27
Tracing Lomuto’s Partioning Algorithm
s i
4 1 10 8 7 12 9 2 15
s i
4 1 10 8 7 12 9 2 15
s i
4 1 10 8 7 12 9 2 15
s i
4 1 2 8 7 12 9 10 15
s
4 1 2 8 7 12 9 10 15
2 1 4 8 7 12 9 10 15
28
Tracing Quickselect (Partition-based Algorithm)
0 1 2 3 4 5 6 7 8
4 1 10 8 7 12 9 2 15
8 7 12 9 10 15
29
Efficiency of Quickselect
30
Interpolation Search
Searches a sorted array similar to binary search but estimates
location of the search key in A[l..r] by using its value v.
Specifically, the values of the array’s elements are assumed to
grow linearly from A[l] to A[r] and the location of v is
estimated as the x-coordinate of the point on the straight line
through (l, A[l]) and (r, A[r]) whose y-coordinate is v:
value
A[r] .
v
A[l] .
index
l x r
31
Analysis of Interpolation Search
Efficiency
average case: C(n) < log2 log2 n + 1
32
Binary Search Tree Algorithms
Several algorithms on BST requires recursive processing of
just one of its subtrees, e.g.,
Searching
k
Insertion of a new key
Finding the smallest (or the largest) key
<k >k
33
Searching in Binary Search Tree
Algorithm BTS(x, v)
//Searches for node with key equal to v in BST rooted at node x
if x = NIL return -1
else if v = K(x) return x
else if v < K(x) return BTS(left(x), v)
else return BTS(right(x), v)
Efficiency
worst case: C(n) = n
average case: C(n) ≈ 2ln n ≈ 1.39log2 n
34
One-Pile Nim
There is a pile of n chips. Two players take turn by removing
from the pile at least 1 and at most m chips. (The number of
chips taken can vary from move to move.) The winner is the
player that takes the last chip. Who wins the game – the player
moving first or second, if both player make the best moves
possible?
35
Partial Graph of One-Pile Nim with m = 4
1 6
2 7
0 5 10
3 8
4 9