Week 6-7: Algorithms 2 Flashcards
recursive algorithms
- algorithm is called recursive if it solves a problem by reducing it to
an instance of the same problem with smaller input
complexity of recursive algorithms
- complexity of recursive algorithms is derived by formulating and solving
recurrences - start at first occurrence and work until it ends
recursive algorithm for fibonacci numbers
procedure fib1(n: nonnegative integer);
if n = 0 or n = 1 return n
return fib1(n-1) + fib1(n-2)
the euclidean algorithm
- largest divisor that divides both m and n
is called the greatest common divisor of m and n - denoted as gcd(m, n)
recursive binary search
- Array a[1…n] contains n elements in non-decreasing order; search for element x
using the recursive version on binary search
procedure binary_search(x, low, high, a)
if high < low
return -1
set m := (low+high)/2
if x = a[m]
return m
if x < a[m]
return binary_search(x, low, m-1, a)
return binary_search(x, m+1, high, a)
complexity of recursive binary search
-recurrence is 𝑇(𝑛) = 𝑇(𝑛/2) + 𝑎 and 𝑇(1) = 𝑏.
- The solution 𝑇 𝑛 ∈ 𝑂(𝑙𝑜𝑔 𝑛) by unwinding because there are log 𝑛 recursive calls
merge sort
- takes an array and sorts elements a[I] through a[u-1] denoted by a[I: u]
- copies the data to a work array b, recursively sorts the two halves of b, and merges the results back into a
merge sort algorithm
merge(a, l, m, u, b)
set i = l and j = m
for k = l to u
if i < m and (j >= u or a[I] <= a{[j])
b[k] <– a[I] and i <- i + 1
else
b[k] <– a[j] and j <– j + 1
complexity of merge sort
- time complexity recurrence is T(n) = 2T(n/2) + O(n) and T(1) = 1 with n = u - l
- for n > 0, there are two recursive calls plus O(n) for copying and merging
- solution is O(n log n) by inductio
- space complexity is O(n logn) but can be reduced to O(n) by using tow arrays instead of a new b each time
towers of Hanoi
- Given are 3 rods and n disks of different sizes, One peg contains the n disks stacked by
decreasing size. - Move the n disks to
another peg - Only one disk may be moved at a
time. - No disk may be placed on top of a
disk that is smaller than it. - One move: take the upper disk from one of the stacks and place it on top of another stack or on an
empty peg
towers of hanoi recursive solution
Let 𝐻𝑛= number of moves needed to solve problem with
𝑛 disks.
➢ In 𝐻𝑛−1 steps move top 𝑛 − 1 disks.
➢ Move the largest disk from peg 1 to peg 2.
➢ In 𝐻𝑛−1steps move 𝑛 − 1 disks from peg 3 to peg 2
procedure hanoi (i, j, k, n)
1. hanoi(i, k, j, n - 1)
2. move(i, j) // move bottom peg from i to j
3. hanoi(k, j, i, n - 1)