摘要:
#include<iostream>#include<cstring>#include<cstdio>using namespace std;const int N=1010;struct edge{ int v,w; edge* next;};struct node{ int k; edge* n 阅读全文
摘要:
#include<iostream>using namespace std;#define N 100typedef char OtherInfo;int visited[N]={0}; typedef struct ArcNode{int adjvex;OtherInfo info;struct 阅读全文