
数据结构
Lucky小黄人
公众号:TestDevelop,一个互联网测试开发工程师,分享各种测开知识、沟通技巧、职场感言。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
用邻接表方式建立图
//用邻接表表示图 #include <stdio.h> #include <stdlib.h> #define DataType char #define MaxVertexNum 20 #define Vertex int #define WeightType int typedef struct GNode *PtrToGNode; struct GNode {...原创 2018-08-26 09:31:50 · 2745 阅读 · 0 评论 -
用邻接矩阵方式建立图、简化化版
//用邻接矩阵表示图 #include <stdio.h> #include <stdlib.h> #define MaxVertexNum 20 typedef int WeightType; typedef char DataType; typedef struct GNode *PtrToGNode; typedef PtrToGNode MGraph; //以...原创 2018-08-26 09:34:57 · 511 阅读 · 0 评论