摘要:
#include typedef struct node { int a; int b; int pre; int zhong; }node; int n,m,p; node point[100000]; int visit[100][100]={0}; int tou; int wei; int last; void bfs() { //printf("%d",p); int t... 阅读全文
摘要:
#include int last; typedef struct node{ int a; int b; int pre; int zong; }node; int A; int B; int C; int vist[99][99]; node dui[100]; void bfs() { int tou=0; int wei=1; du... 阅读全文