Activity-selection Problem
Example:
A :
Define the Problem
Top-down Greedy Algorithm
• Goal: to compute max activity
• Pseudo-code
– Rec-Job-Select( s,f, i, n )
m = i + 1
while (m ≤ n) and ( < )
do m = m + 1
if m ≤ n
return { }  Rec-Job-Select(s, f, m, n)
else return 
sm
fi
am

Activity selection problem