Will SCC pattern change if we reverse a graph(using Kosaraju's Algorithm)?
问题 Assume we have a digraph, it is not a complete graph and has more than one SCC. I wonder if the patterns of Strongly Connected Component changes if we transpose the graph and use Kosaraju's Algorithm? By saying "transpose the graph" I mean flip the direction of edges. If we try to find SCC in the transposed/reversed graph instead of the original, will the SCC we find be different? I came up with this question as I misunderstood the algorithm of SCC and runs it on my transposed/reversed graph.