mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-09 05:44:13 +08:00
docs: add Japanese translate documents (#1812)
* docs: add Japanese documents (`ja/docs`) * docs: add Japanese documents (`ja/codes`) * docs: add Japanese documents * Remove pythontutor blocks in ja/ * Add an empty at the end of each markdown file. * Add the missing figures (use the English version temporarily). * Add index.md for Japanese version. * Add index.html for Japanese version. * Add missing index.assets * Fix backtracking_algorithm.md for Japanese version. * Add avatar_eltociear.jpg. Fix image links on the Japanese landing page. * Add the Japanese banner. --------- Co-authored-by: krahets <krahets@163.com>
This commit is contained in:
committed by
GitHub
parent
2487a27036
commit
954c45864b
51
ja/codes/java/chapter_graph/graph_dfs.java
Normal file
51
ja/codes/java/chapter_graph/graph_dfs.java
Normal file
@@ -0,0 +1,51 @@
|
||||
/**
|
||||
* File: graph_dfs.java
|
||||
* Created Time: 2023-02-12
|
||||
* Author: krahets (krahets@163.com)
|
||||
*/
|
||||
|
||||
package chapter_graph;
|
||||
|
||||
import java.util.*;
|
||||
import utils.*;
|
||||
|
||||
public class graph_dfs {
|
||||
/* 深さ優先走査の補助関数 */
|
||||
static void dfs(GraphAdjList graph, Set<Vertex> visited, List<Vertex> res, Vertex vet) {
|
||||
res.add(vet); // 訪問した頂点を記録
|
||||
visited.add(vet); // 頂点を訪問済みとしてマーク
|
||||
// その頂点のすべての隣接頂点を走査
|
||||
for (Vertex adjVet : graph.adjList.get(vet)) {
|
||||
if (visited.contains(adjVet))
|
||||
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;
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
/* 無向グラフを初期化 */
|
||||
Vertex[] v = Vertex.valsToVets(new int[] { 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 GraphAdjList(edges);
|
||||
System.out.println("\n初期化後、グラフは");
|
||||
graph.print();
|
||||
|
||||
/* 深さ優先走査 */
|
||||
List<Vertex> res = graphDFS(graph, v[0]);
|
||||
System.out.println("\n深さ優先走査 (DFS) の頂点順序は");
|
||||
System.out.println(Vertex.vetsToVals(res));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user