/** * File: graph_dfs.dart * Created Time: 2023-05-15 * Author: liuyuxin (gvenusleo@gmail.com) */ import '../utils/vertex.dart'; import 'graph_adjacency_list.dart'; /* Depth-first traversal helper function */ void dfs( GraphAdjList graph, Set visited, List res, Vertex vet, ) { res.add(vet); // Record visited vertex visited.add(vet); // Mark the vertex as visited // Traverse all adjacent vertices of that vertex for (Vertex adjVet in graph.adjList[vet]!) { if (visited.contains(adjVet)) { continue; // Skip already visited vertices } // Recursively visit adjacent vertices dfs(graph, visited, res, adjVet); } } /* Depth-first traversal */ List graphDFS(GraphAdjList graph, Vertex startVet) { // Vertex traversal sequence List res = []; // Hash set, used to record visited vertices Set visited = {}; dfs(graph, visited, res, startVet); return res; } /* Driver Code */ void main() { /* Initialize undirected graph */ List v = Vertex.valsToVets([0, 1, 2, 3, 4, 5, 6]); List> edges = [ [v[0], v[1]], [v[0], v[3]], [v[1], v[2]], [v[2], v[5]], [v[4], v[5]], [v[5], v[6]], ]; GraphAdjList graph = GraphAdjList(edges); print("\nAfter initialization, the graph is"); graph.printAdjList(); /* Depth-first traversal */ List res = graphDFS(graph, v[0]); print("\nDepth-first traversal (DFS) vertex sequence is"); print(Vertex.vetsToVals(res)); }