2017年5月8日

图——广度优先遍历(邻接矩阵存储)

摘要: 图——广度优先遍历 #include <cstdio> #include <iostream> #include <queue> using namespace std; int graph[100][100]={0}; int visited[100]={0}; queue <int> q; vo 阅读全文

posted @ 2017-05-08 16:43 七昂的技术之旅 阅读(324) 评论(0) 推荐(0) 编辑

导航