剛剛有人寫信來問我為什麼他一直測都沒錯,丟上批改娘只有 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));