Always choose the best choice every single step. Never look back, the past is in the past.
The greedy algorithm may be used when the problem has the two characteristics:
If a problem doesn't have one of these characteristics, then using greedy algorithm will usually not get the best answer, for greedy algorithm often gets an answer too early.
Now given several activities all need to use the same playground, and their scheduled start & end time are also known. Make an arrangement to get most activities arranged.
Use $a_i(i=1,2,\cdots,n)$ to present activities, $s_i$ is the start time of $a_i$ and $f_i$ is the end time of it. $S_{ij}$ means activities between time points $i$ and $j$. This problem can be solved using greedy algorithm.
Assume $a_k$ is in the maximum compatible activities subset of $S_{ij}$—$A_{ij}$, then $S_{ik}$ and $S_{kj}$ will also have their maximum compatible subsets $A_{ik}$ and $A_{kj}$. Otherwise, there'll be a better choice $A'$ in $S_{ik}$ ($S_{kj}$) which can make a better choice $A_{ij}'$. It's impossible.
We follow this rule: always pick the activities with the earliest end time. For $S_{ij}$, we pick $f_m=\min\{f_k|a_k\in S_{ij}\}$. Then:
$S_{im}=\empty$, then the only non-empty sub-problem of $S_{ij}$ is $S_{mj}$. It's obvious.
$a_m$ will be included in one of $S_{ij}$'s maximum compatible activities subset. Proof:
Assume $A_{ij}$ is a maximum compatible subset of $S_{ij}$. Now we sort the activities in it by their end time. Pick the earliest one $a_k$. Then:
To sum up, by always choosing the first activity that ends first, we will get a maximum compatible subset of $S_{ij}$.
The process of using Huffman coding is introduced in both Discrete Mathematics and Data Structure, so omitted here...