摘要: #学习笔记 邻接矩阵算法 增加顶点 void insertVex(AdjMatrix *G,char e)//插入顶点 { int i,j; G->Vertex[G->vexnum++] = e; i=DNlocation(*G,e); j=DNlocation(*G,e); int m=i,n=j 阅读全文
posted @ 2020-05-25 22:08 小鬼不当家 阅读(120) 评论(0) 推荐(0)