Podcast
Questions and Answers
Which design paradigm is discussed in Chapter 4?
Which design paradigm is discussed in Chapter 4?
- Dynamic programming
- Divide-and-conquer (correct)
- Backtracking
- Greedy algorithms
What is the recurrence relation for merge sort?
What is the recurrence relation for merge sort?
- T(n) = 2T(n/2) + cn (correct)
- T(n) = T(n-1) + cn
- T(n) = 2T(n-1) + cn
- T(n) = T(n/2) + cn
Which algorithm is NOT mentioned as an example of divide-and-conquer?
Which algorithm is NOT mentioned as an example of divide-and-conquer?
- Binary search
- Quick sort (correct)
- Merge sort
- Multiplying n*n matrices
Which method is NOT discussed for solving recurrences?
Which method is NOT discussed for solving recurrences?
What is the name of the instructor for CS 412 Algorithm Analysis and Design?
What is the name of the instructor for CS 412 Algorithm Analysis and Design?