Skip to content

Commit

Permalink
Update SCC.tex
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcxzyw authored Dec 14, 2021
1 parent 61c0794 commit cdc8959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Review/Graph/SCC.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cdc8959

Please sign in to comment.