摘要:
http://poj.org/problem?id=1144求图中割点数目,只是输入处理比较麻烦,由于不知道有多长,所以需要字符输入然后转换成数字 1 #include <stdio.h> 2 #include <string.h> 3 #define SIZE 101 4 #define MIN(a,b) ((a)<(b)?(a):(b)) 5 bool map[SIZE][SIZE],cut[SIZE]; 6 int num,cnt,count,k,dfn[SIZE],low[SIZE]; 7 const int root=1; 8 char line[5*S 阅读全文