无向图的DFS
方法一:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #include <iostream> using namespace std; const int MAX=100; bool visited[MAX]={false}; int adj[MAX][MAX]={0}; int n,m; //n is the number of nodes, m is the number of edges void dfs(int u){ visited[u]=true; cout<<u<<" "; for (int v = 0; v < n; v++){ if(adj[u][v] && !visited[v]) dfs(v); } } int main(){ cin >>n>>m; for (int i = 0; i <m; i++){ int u,v; cin>>u>>v; adj[u][v]=adj[v][u]=1; } dfs(0); //start DFS from node 0 return 0; } |
方法二:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /**************************************************************** * Description: DFS with stack * Author: Alex Li * Date: 2023-02-24 17:34:31 * LastEditTime: 2024-12-08 16:37:38 ****************************************************************/ #include <iostream> #include <stack> using namespace std; const int MAXN = 100; // 图中顶点的最大数量 int adjMat[MAXN][MAXN]; // 邻接矩阵表示图 bool visited[MAXN]; // 用于标记顶点是否已访问 int n, m; // vertexCount 表示顶点数,edgeCount 表示边数 // 深度优先搜索函数,从指定的起始顶点开始遍历 void dfs(int start) { stack<int> st; // 使用栈存储待访问的节点 st.push(start); // 将起始顶点压入栈 while (!st.empty()) { int cur = st.top(); // 获取栈顶的顶点 st.pop(); // 弹出栈顶顶点 if (!visited[cur]) { visited[cur] = true; // 标记当前顶点为已访问 cout << cur << " "; // 输出当前顶点 // 将当前顶点的所有未访问邻接点压入栈 for (int i = 0; i < n; i++) { if (adjMat[cur][i] && !visited[i]) { st.push(i); } } } } } int main() { cin >> n >> m;// 输入顶点数和边数 // 初始化邻接矩阵为 0 for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { adjMat[i][j] = 0; } } // 读取边的信息并更新邻接矩阵 for (int i = 0; i < m; i++) { int u, v; // vertex1 和 vertex2 表示一条边的两个端点 cin >> u >> v; adjMat[u][v] = 1; //添加边 (vertex1 -> vertex2) adjMat[v][u] = 1; // 添加边 (vertex2 -> vertex1),因为是无向图 } // 初始化访问标记数组 for (int i = 0; i < n; i++) { visited[i] = false; } // 从顶点 0 开始执行深度优先搜索 dfs(0); return 0; } |