#include <iostream>
using namespace std;
#include "stdlib.h"
#include "math.h"
#include "time.h"
// 无向图的创建
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define MAXVEX 100 // 最大的顶点数
#define INFINITY 65535
typedef int Status;
typedef
无向图的邻接矩阵创建表示
最新推荐文章于 2024-07-22 20:44:53 发布