图的广度优先遍历
#include<iostream>using namespace std;#define MAX 30typedef struct node{ int adjvertex; struct node
图的广度优先遍历