Introduction to Greedy Algorithms

Learn what greedy algorithms are and how they can be used to solve different problems.

Greedy algorithms

In this chapter, we’ll learn about seemingly naive yet powerful greedy algorithms. After learning the key idea behind the greedy algorithms, some students feel that they represent the algorithmic Swiss Army knife that can be applied to solve nearly all programming challenges in this course. Be warned: since this intuitive idea rarely works in practice, we have to prove that our greedy algorithm produces an optimal solution!

We’ll be solving the following problems with greedy algorithms:


Money change

Compute the minimum number of coins needed to change the given value into coins with denominations 11, 55, and 1010.

Input: An integer moneymoney.

Output: The minimum number of coins with denominations 11, 55, and 1010 that changes moneymoney.

Press + to interact
Money change
Money change

Maximizing the value of the loot

Find the maximal value of items that fit into the backpack.

Input: The capacity of a backpack WW, as well as the weights (w1,,wn)(w_{1} ,\ldots,w_{n}) and costs (c1,,cn)(c_{1},\ldots, c_{n}) of nn different compounds.

Output: The maximum total value of fractions of items that fit into the backpack of the given capacity, i.e., the maximum value of c1f1++cnfnc_{1}·f_{1}+\ldots+c_{n}·f_{n} ...