Greedy Strategies
Learn different greedy strategies to design greedy algorithms.
We'll cover the following...
Examples
A greedy algorithm builds a solution piece by piece and, at each step, chooses the most profitable piece. There are two natural implementations of this strategy: either iterative with a while loop or recursive. This is best illustrated with examples.
Largest Concatenate Problem
Our first example is the Largest Concatenate Problem: given a sequence of single-digit numbers, find the largest number that can be obtained by concatenating these numbers. For example, for the input sequence , the output is the number . It is easy to come up with an algorithm for this problem. Clearly, the largest single-digit number should be selected as the first digit of the concatenate. Afterward, we face essentially the same problem: concatenate the remaining numbers to get as large a number as possible.
:
empty string
while is not empty:
largest among
append to
remove from
return
Money Change Problem
Our second example is the Money Change Problem: given a non-negative integer , find the minimum number of coins with denominations ...