使用矩阵建立有向和无向

#include
using namespace std;
typedef struct Graph{
	char a[10];
	int  juzhen[10][10];
	int vex,edge;
}Graph;
int Locate(Graph &p,char a);
void CreatGraph(Graph &p);
void dayin(Graph &p);
int Locate(Graph &p,char a){
	int b=p.vex;
	int c;
	for(c=0;c

使用邻接矩阵建无向图

你可能感兴趣的:(考试,矩阵,线性代数)