摘要:
代码: void BFS(MGraph Graph, Vertex S, void(* Visit)(Vertex)) { Queue Q; Vertex V, W; Q = CreateQueue(MaxSize); // 创建空队列 // 访问顶点, 此处可以根据需要改写 Visit 函数 Vi 阅读全文
摘要:
queue.h #include <stdbool.h> #ifndef MGRAPH_QUEUE_H #define MGRAPH_QUEUE_H typedef int ElementType; typedef int Position; typedef struct QNode * PtrTo 阅读全文