You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
669 B
27 lines
669 B
#pragma once
|
|
#ifndef _TEST_H_
|
|
#define _TEST_H_
|
|
|
|
#define M 30
|
|
#define MAXV 100 //最大顶点个数
|
|
#define INF 32767 //INF表示∞
|
|
|
|
struct VertexType
|
|
{ int bianhao; //顶点的编号
|
|
char sight[10]; //地点
|
|
}; //定义顶点的类型
|
|
|
|
struct ArcCell
|
|
{
|
|
int length;//边的长度,既两个地点之的长
|
|
}; //定义边的类型
|
|
|
|
struct MatGrath
|
|
{
|
|
int vexnum; //顶点数
|
|
int arcnum; //边数
|
|
VertexType vexs[M]; //在图结构体中调用点的结构体
|
|
ArcCell arc[M][M]; //在图结构体中调用边的结构体
|
|
};
|
|
|
|
#endif |