摘要: #include #define N 20 #define TRUE 1 #define FALSE 0 int visited[N]; typedef struct /*队列的定义*/ { int data[N]; int front;//队头指针 int rear;//队尾指针 } queue; typedef struct /*图的邻接矩阵*/ { ... 阅读全文
posted @ 2018-11-20 19:31 王陸 阅读(3054) 评论(0) 推荐(1) 编辑