Suppose we have the following graph: A->B
Surely {A,B} is not a strongly connected component because A is not reachable from B. But my question is what are the strongly connected components of this graph?
Is it NULL/{}/None or {A} and {B}?
I think the strongly connected components should be {A} and {B} (because of this algorithm and this answer here for undirected graph: Singleton graph/single node is connected). But I am confused because of two reasons: one this is a directed graph, and two there no self loop on either A or B, so I am confused whether A/B is reachable by A/B. Can someone clarify this? Thanks in advance.