摘要: 代码: void BFS(MGraph Graph, Vertex S, void(* Visit)(Vertex)) { Queue Q; Vertex V, W; Q = CreateQueue(MaxSize); // 创建空队列 // 访问顶点, 此处可以根据需要改写 Visit 函数 Vi 阅读全文
posted @ 2020-11-21 16:41 模糊计算士 阅读(224) 评论(2) 推荐(0) 编辑
摘要: queue.h #include <stdbool.h> #ifndef MGRAPH_QUEUE_H #define MGRAPH_QUEUE_H typedef int ElementType; typedef int Position; typedef struct QNode * PtrTo 阅读全文
posted @ 2020-11-21 16:40 模糊计算士 阅读(172) 评论(0) 推荐(0) 编辑