\chapter{Strong connectivity} \index{strongly connected graph} In a directed graph, the edges can be traversed in one direction only, so even if the graph is connected, this does not guarantee that there would be a path from a node to another node. For this reason, it is meaningful to define a new concept that requires more than connectivity. A graph is \key{strongly connected} if there is a path from any node to all other nodes in the graph. For example, in the following picture, the left graph is strongly connected while the right graph is not. \begin{center} \begin{tikzpicture}[scale=0.9] \node[draw, circle] (1) at (1,1) {$1$}; \node[draw, circle] (2) at (3,1) {$2$}; \node[draw, circle] (3) at (1,-1) {$3$}; \node[draw, circle] (4) at (3,-1) {$4$}; \path[draw,thick,->] (1) -- (2); \path[draw,thick,->] (2) -- (4); \path[draw,thick,->] (4) -- (3); \path[draw,thick,->] (3) -- (1); \node[draw, circle] (1b) at (6,1) {$1$}; \node[draw, circle] (2b) at (8,1) {$2$}; \node[draw, circle] (3b) at (6,-1) {$3$}; \node[draw, circle] (4b) at (8,-1) {$4$}; \path[draw,thick,->] (1b) -- (2b); \path[draw,thick,->] (2b) -- (4b); \path[draw,thick,->] (4b) -- (3b); \path[draw,thick,->] (1b) -- (3b); \end{tikzpicture} \end{center} The right graph is not strongly connected because, for example, there is no path from node 2 to node 1. \index{strongly connected component} \index{component graph} The \key{strongly connected components} of a graph divide the graph into strongly connected parts that are as large as possible. The strongly connected components form an acyclic \key{component graph} that represents the deep structure of the original graph. For example, for the graph \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,->] (2) -- (1); \path[draw,thick,->] (1) -- (3); \path[draw,thick,->] (3) -- (2); \path[draw,thick,->] (2) -- (4); \path[draw,thick,->] (3) -- (5); \path[draw,thick,->] (4) edge [bend left] (6); \path[draw,thick,->] (6) edge [bend left] (4); \path[draw,thick,->] (4) -- (5); \path[draw,thick,->] (5) -- (7); \path[draw,thick,->] (6) -- (7); \end{tikzpicture} \end{center} the strongly connected components are as follows: \begin{center} \begin{tikzpicture}[scale=0.9] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,->] (2) -- (1); \path[draw,thick,->] (1) -- (3); \path[draw,thick,->] (3) -- (2); \path[draw,thick,->] (2) -- (4); \path[draw,thick,->] (3) -- (5); \path[draw,thick,->] (4) edge [bend left] (6); \path[draw,thick,->] (6) edge [bend left] (4); \path[draw,thick,->] (4) -- (5); \path[draw,thick,->] (5) -- (7); \path[draw,thick,->] (6) -- (7); \draw [red,thick,dashed,line width=2pt] (-0.5,2.5) rectangle (-3.5,-0.5); \draw [red,thick,dashed,line width=2pt] (-4.5,2.5) rectangle (-7.5,1.5); \draw [red,thick,dashed,line width=2pt] (-4.5,0.5) rectangle (-5.5,-0.5); \draw [red,thick,dashed,line width=2pt] (-6.5,0.5) rectangle (-7.5,-0.5); \end{tikzpicture} \end{center} The corresponding component graph is as follows: \begin{center} \begin{tikzpicture}[scale=0.9] \node[draw, circle] (1) at (-3,1) {$B$}; \node[draw, circle] (2) at (-6,2) {$A$}; \node[draw, circle] (3) at (-5,0) {$D$}; \node[draw, circle] (4) at (-7,0) {$C$}; \path[draw,thick,->] (1) -- (2); \path[draw,thick,->] (1) -- (3); \path[draw,thick,->] (2) -- (3); \path[draw,thick,->] (2) -- (4); \path[draw,thick,->] (3) -- (4); \end{tikzpicture} \end{center} The components are $A=\{1,2\}$, $B=\{3,6,7\}$, $C=\{4\}$ and $D=\{5\}$. A component graph is an acyclic, directed graph, so it is easier to process than the original graph. Since the graph does not contain cycles, we can always construct a topological sort and use dynamic programming techniques like those presented in Chapter 16. \section{Kosaraju's algorithm} \index{Kosaraju's algorithm} \key{Kosaraju's algorithm}\footnote{According to \cite{aho83}, S. R. Kosaraju invented this algorithm in 1978 but did not publish it. In 1981, the same algorithm was rediscovered and published by M. Sharir \cite{sha81}.} is an efficient method for finding the strongly connected components of a directed graph. The algorithm performs two depth-first searches: the first search constructs a list of nodes according to the structure of the graph, and the second search forms the strongly connected components. \subsubsection{Search 1} The first phase of Kosaraju's algorithm constructs a list of nodes in the order in which a depth-first search processes them. The algorithm goes through the nodes, and begins a depth-first search at each unprocessed node. Each node will be added to the list after it has been processed. In the example graph, the nodes are processed in the following order: \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \node at (-7,2.75) {$1/8$}; \node at (-5,2.75) {$2/7$}; \node at (-3,2.75) {$9/14$}; \node at (-7,-0.75) {$4/5$}; \node at (-5,-0.75) {$3/6$}; \node at (-3,-0.75) {$11/12$}; \node at (-1,1.75) {$10/13$}; \path[draw,thick,->] (2) -- (1); \path[draw,thick,->] (1) -- (3); \path[draw,thick,->] (3) -- (2); \path[draw,thick,->] (2) -- (4); \path[draw,thick,->] (3) -- (5); \path[draw,thick,->] (4) edge [bend left] (6); \path[draw,thick,->] (6) edge [bend left] (4); \path[draw,thick,->] (4) -- (5); \path[draw,thick,->] (5) -- (7); \path[draw,thick,->] (6) -- (7); \end{tikzpicture} \end{center} The notation $x/y$ means that processing the node started at time $x$ and finished at time $y$. Thus, the corresponding list is as follows: \begin{tabular}{ll} \\ node & processing time \\ \hline 4 & 5 \\ 5 & 6 \\ 2 & 7 \\ 1 & 8 \\ 6 & 12 \\ 7 & 13 \\ 3 & 14 \\ \\ \end{tabular} % % In the second phase of the algorithm, % the nodes will be processed % in reverse order: $[3,7,6,1,2,5,4]$. \subsubsection{Search 2} The second phase of the algorithm forms the strongly connected components of the graph. First, the algorithm reverses every edge in the graph. This guarantees that during the second search, we will always find strongly connected components that do not have extra nodes. After reversing the edges, the example graph is as follows: \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,<-] (2) -- (1); \path[draw,thick,<-] (1) -- (3); \path[draw,thick,<-] (3) -- (2); \path[draw,thick,<-] (2) -- (4); \path[draw,thick,<-] (3) -- (5); \path[draw,thick,<-] (4) edge [bend left] (6); \path[draw,thick,<-] (6) edge [bend left] (4); \path[draw,thick,<-] (4) -- (5); \path[draw,thick,<-] (5) -- (7); \path[draw,thick,<-] (6) -- (7); \end{tikzpicture} \end{center} After this, the algorithm goes through the list of nodes created by the first search, in \emph{reverse} order. If a node does not belong to a component, the algorithm creates a new component and starts a depth-first search that adds all new nodes found during the search to the new component. In the example graph, the first component begins at node 3: \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,<-] (2) -- (1); \path[draw,thick,<-] (1) -- (3); \path[draw,thick,<-] (3) -- (2); \path[draw,thick,<-] (2) -- (4); \path[draw,thick,<-] (3) -- (5); \path[draw,thick,<-] (4) edge [bend left] (6); \path[draw,thick,<-] (6) edge [bend left] (4); \path[draw,thick,<-] (4) -- (5); \path[draw,thick,<-] (5) -- (7); \path[draw,thick,<-] (6) -- (7); \draw [red,thick,dashed,line width=2pt] (-0.5,2.5) rectangle (-3.5,-0.5); \end{tikzpicture} \end{center} Note that since all edges are reversed, the component does not ''leak'' to other parts in the graph. \begin{samepage} The next nodes in the list are nodes 7 and 6, but they already belong to a component, so the next new component begins at node 1: \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,<-] (2) -- (1); \path[draw,thick,<-] (1) -- (3); \path[draw,thick,<-] (3) -- (2); \path[draw,thick,<-] (2) -- (4); \path[draw,thick,<-] (3) -- (5); \path[draw,thick,<-] (4) edge [bend left] (6); \path[draw,thick,<-] (6) edge [bend left] (4); \path[draw,thick,<-] (4) -- (5); \path[draw,thick,<-] (5) -- (7); \path[draw,thick,<-] (6) -- (7); \draw [red,thick,dashed,line width=2pt] (-0.5,2.5) rectangle (-3.5,-0.5); \draw [red,thick,dashed,line width=2pt] (-4.5,2.5) rectangle (-7.5,1.5); %\draw [red,thick,dashed,line width=2pt] (-4.5,0.5) rectangle (-5.5,-0.5); %\draw [red,thick,dashed,line width=2pt] (-6.5,0.5) rectangle (-7.5,-0.5); \end{tikzpicture} \end{center} \end{samepage} \begin{samepage} Finally, the algorithm processes nodes 5 and 4 that create the remaining strongly connected components: \begin{center} \begin{tikzpicture}[scale=0.9,label distance=-2mm] \node[draw, circle] (1) at (-1,1) {$7$}; \node[draw, circle] (2) at (-3,2) {$3$}; \node[draw, circle] (4) at (-5,2) {$2$}; \node[draw, circle] (6) at (-7,2) {$1$}; \node[draw, circle] (3) at (-3,0) {$6$}; \node[draw, circle] (5) at (-5,0) {$5$}; \node[draw, circle] (7) at (-7,0) {$4$}; \path[draw,thick,<-] (2) -- (1); \path[draw,thick,<-] (1) -- (3); \path[draw,thick,<-] (3) -- (2); \path[draw,thick,<-] (2) -- (4); \path[draw,thick,<-] (3) -- (5); \path[draw,thick,<-] (4) edge [bend left] (6); \path[draw,thick,<-] (6) edge [bend left] (4); \path[draw,thick,<-] (4) -- (5); \path[draw,thick,<-] (5) -- (7); \path[draw,thick,<-] (6) -- (7); \draw [red,thick,dashed,line width=2pt] (-0.5,2.5) rectangle (-3.5,-0.5); \draw [red,thick,dashed,line width=2pt] (-4.5,2.5) rectangle (-7.5,1.5); \draw [red,thick,dashed,line width=2pt] (-4.5,0.5) rectangle (-5.5,-0.5); \draw [red,thick,dashed,line width=2pt] (-6.5,0.5) rectangle (-7.5,-0.5); \end{tikzpicture} \end{center} \end{samepage} The time complexity of the algorithm is $O(n+m)$, because the algorithm performs two depth-first searches.