Re-translate the Japanese version (#1871)

* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
This commit is contained in:
Yudong Jin
2026-03-30 07:30:15 +08:00
committed by GitHub
parent fe6443235b
commit d7b2277d2b
1444 changed files with 83312 additions and 8363 deletions

View File

@@ -13,22 +13,22 @@ public class graph_dfs {
/* 深さ優先走査の補助関数 */
static void dfs(GraphAdjList graph, Set<Vertex> visited, List<Vertex> res, Vertex vet) {
res.add(vet); // 訪問した頂点を記録
visited.add(vet); // 頂点を訪問済みとしてマーク
// の頂点のすべての隣接頂点を走査
visited.add(vet); // この頂点を訪問済みにする
// の頂点のすべての隣接頂点を走査
for (Vertex adjVet : graph.adjList.get(vet)) {
if (visited.contains(adjVet))
continue; // すでに訪問済みの頂点をスキップ
continue; // 訪問済みの頂点をスキップ
// 隣接頂点を再帰的に訪問
dfs(graph, visited, res, adjVet);
}
}
/* 深さ優先走査 */
// 隣接リストを使用してグラフを表現し、指定した頂点のすべての隣接頂点を取得
/* 深さ優先探索 */
// グラフを隣接リストで表し、指定した頂点の隣接頂点をすべて取得できるようにする
static List<Vertex> graphDFS(GraphAdjList graph, Vertex startVet) {
// 頂点走査順序
// 頂点走査順序
List<Vertex> res = new ArrayList<>();
// ハッシュセット、訪問済み頂点を記録するために使用
// 訪問済み頂点を記録するためのハッシュ集合
Set<Vertex> visited = new HashSet<>();
dfs(graph, visited, res, startVet);
return res;
@@ -40,12 +40,12 @@ public class graph_dfs {
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 GraphAdjList(edges);
System.out.println("\n初期化後グラフ");
System.out.println("\n初期化後グラフ");
graph.print();
/* 深さ優先走査 */
/* 深さ優先探索 */
List<Vertex> res = graphDFS(graph, v[0]);
System.out.println("\n深さ優先走査 (DFS) の頂点順序");
System.out.println("\n深さ優先探索(DFSの頂点");
System.out.println(Vertex.vetsToVals(res));
}
}
}