胡图图的糊涂图
#include
#include "stdio.h"
#include "stdlib.h"
#include "cstdlib"//syste()函数需要该头文件;
using namespace std;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int Status;
#define MaxInt 0 //网中表示极大值,即∞,若为无向图,Mxint 0;
#define MVNum 100 //最大顶点数
#define MENum 20 //最大边数
//图的邻接表存储表示
typedef char VerTexType; //假设顶点的数据类型为字符型
typedef int ArcType; //假设边的权值类型为整型,若为无向图,ArcType->EdgeType
typedef struct ArcNode//边结点
{
int adjvex; //改边所指向的顶点的位置
struct ArcNode *n
胡图图的糊涂图最先出现在Python成神之路。
共有 0 条评论