摘要:
```c++ #include #include #define MAX_VERTEX_NUM 20 //最大顶点数 using namespace std; typedef char VertexType; //顶点数据类型 typedef enum {DG, DN, UDG, UDN} GraphKind; typedef struct { int adj; //权值 int info; // 阅读全文
posted @ 2019-12-19 21:55
翁德彪
阅读(193)
评论(0)
推荐(0)