Files
Yudong Jin d7b2277d2b Re-translate the Japanese version (#1871)
* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
2026-03-30 07:30:15 +08:00

55 lines
1.9 KiB
C#

/**
* File: graph_dfs.cs
* Created Time: 2023-03-08
* Author: hpstory (hpstory1024@163.com)
*/
namespace hello_algo.chapter_graph;
public class graph_dfs {
/* 深さ優先走査の補助関数 */
void DFS(GraphAdjList graph, HashSet<Vertex> visited, List<Vertex> res, Vertex vet) {
res.Add(vet); // 訪問した頂点を記録
visited.Add(vet); // この頂点を訪問済みにする
// この頂点のすべての隣接頂点を走査
foreach (Vertex adjVet in graph.adjList[vet]) {
if (visited.Contains(adjVet)) {
continue; // 訪問済みの頂点をスキップ
}
// 隣接頂点を再帰的に訪問
DFS(graph, visited, res, adjVet);
}
}
/* 深さ優先探索 */
// グラフを隣接リストで表し、指定した頂点の隣接頂点をすべて取得できるようにする
List<Vertex> GraphDFS(GraphAdjList graph, Vertex startVet) {
// 頂点の走査順序
List<Vertex> res = [];
// 訪問済み頂点を記録するためのハッシュ集合
HashSet<Vertex> visited = [];
DFS(graph, visited, res, startVet);
return res;
}
[Test]
public void Test() {
/* 無向グラフを初期化 */
Vertex[] v = Vertex.ValsToVets([0, 1, 2, 3, 4, 5, 6]);
Vertex[][] 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 = new(edges);
Console.WriteLine("\n初期化後、グラフは");
graph.Print();
/* 深さ優先探索 */
List<Vertex> res = GraphDFS(graph, v[0]);
Console.WriteLine("\n深さ優先探索(DFS)の頂点順序は");
Console.WriteLine(string.Join(" ", Vertex.VetsToVals(res)));
}
}