刚刚有人写信来问我为什么他一直测都没错,丢上批改娘只有 4 分…
如果有同学有类似的情况可以试试以下的程式码:
int friends[500];
Graph *g = (Graph*) malloc(sizeof(Graph));
init(g);
add_node(g, 500);
add_node(g, 499);
printf("%d\n", add_edge(g, 500, 499));
printf("%d\n", add_edge(g, 499, 500));
printf("%d\n", find_friends(g, 500, friends));