0_0_23202964_20673.cpp:30:1: error: stray '\243' in program
int index1; //索引号
^
0_0_23202964_20673.cpp:30:1: error: stray '\273' in program
0_0_23202964_20673.cpp:31:1: error: expected initializer before 'int'
int sccno; //强连通分量个数
^
0_0_23202964_20673.cpp: In function 'void init()':
0_0_23202964_20673.cpp:51:5: error: 'index1' was not declared in this scope
index1=0;
^
0_0_23202964_20673.cpp:52:5: error: 'sccno' was not declared in this scope
sccno=0;
^
0_0_23202964_20673.cpp: In function 'void tarjan(int)':
0_0_23202964_20673.cpp:66:21: error: 'index1' was not declared in this scope
dfn[u]=low[u]=++index1;
^
0_0_23202964_20673.cpp:80:9: error: 'sccno' was not declared in this scope
sccno++;
^
0_0_23202964_20673.cpp: In function 'void findscc()':
0_0_23202964_20673.cpp:92:17: error: 'u' was not declared in this scope
if(!dfn[u]) tarjan(u);
^
0_0_23202964_20673.cpp: At global scope:
0_0_23202964_20673.cpp:94:1: error: expected declaration before '}' token
}
^
|