Question regarding Directed SCCs

So I found this handout which proposes & proves the following algorithm for finding SCCs of a directed graph:

  1. Run DFS on the reversed directed graph and keep track of the post numbers for each node.
  2. In order of highest post number to the lowest post number, run a normal connected components algorithm.
  3. Profit

This is based on the lemma that if C and C' are two SCCs and C goes to C', then the highest post number in C is greater than the highest post number in C'.
So why can’t we just run DFS on the normal directed graph and go from lowest post number to highest post number? This reversed graph thing seems a bit unnecessary, to be honest.

by normal connected components algorithm, I assume you mean DFS on the original directed graph. if you change step 1 to run on the original directed graph, then you need to change step 2 to DFS on the reversed graph

Why’s that? How is running DFS on the normal directed graph and then going from lowest post number to highest post number different from running DFS on the reversed graph then going from highest post number to lowest post number?

why not try it and see what happens?