From cdc895903675fec8bda7d359541d48bcc7ddabb9 Mon Sep 17 00:00:00 2001 From: Zheng Yingwei Date: Tue, 14 Dec 2021 17:12:44 +0800 Subject: [PATCH] Update SCC.tex --- Review/Graph/SCC.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Review/Graph/SCC.tex b/Review/Graph/SCC.tex index f6b5fcc..d121d28 100644 --- a/Review/Graph/SCC.tex +++ b/Review/Graph/SCC.tex @@ -24,7 +24,7 @@ \subsection{Tarjan算法} \begin{lstlisting} int dfn[size],low[size],st[size],top=0,col[size],ccnt=0; bool flag[size]; -void tarjan(int u) { +void DFS(int u) { static int icnt=0; dfn[u]=low[u]=++icnt; flag[u]=true;