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
+25 -25
View File
@@ -4,7 +4,7 @@ INHERIT: ../mkdocs.yml
# Project information
site_name: Hello アルゴリズム
site_url: https://www.hello-algo.com/ja/
site_description: "アニメーション図解ワンクリック実行データ構造とアルゴリズムチュートリアル"
site_description: "アニメーション図解ワンクリック実行コードで学べるデータ構造とアルゴリズムの入門書"
docs_dir: ../build/ja/docs
site_dir: ../site/ja
# Repository
@@ -37,7 +37,7 @@ extra:
# Page tree
nav:
- :
- はじめに:
- chapter_hello_algo/index.md
- 第 0 章   前書き:
# [icon: material/book-open-outline]
@@ -48,13 +48,13 @@ nav:
- 第 1 章   アルゴリズムを知る:
# [icon: material/calculator-variant-outline]
- chapter_introduction/index.md
- 1.1   アルゴリズムはどこにでもある: chapter_introduction/algorithms_are_everywhere.md
- 1.2   アルゴリズムとは何か: chapter_introduction/what_is_dsa.md
- 1.1   アルゴリズムは至るところにある: chapter_introduction/algorithms_are_everywhere.md
- 1.2   アルゴリズムとは: chapter_introduction/what_is_dsa.md
- 1.3   まとめ: chapter_introduction/summary.md
- 第 2 章   計算量解析:
# [icon: material/timer-sand]
- chapter_computational_complexity/index.md
- 2.1   アルゴリズム効率評価: chapter_computational_complexity/performance_evaluation.md
- 2.1   アルゴリズム効率評価: chapter_computational_complexity/performance_evaluation.md
- 2.2   反復と再帰: chapter_computational_complexity/iteration_and_recursion.md
- 2.3   時間計算量: chapter_computational_complexity/time_complexity.md
- 2.4   空間計算量: chapter_computational_complexity/space_complexity.md
@@ -64,8 +64,8 @@ nav:
- chapter_data_structure/index.md
- 3.1   データ構造の分類: chapter_data_structure/classification_of_data_structure.md
- 3.2   基本データ型: chapter_data_structure/basic_data_types.md
- 3.3   数値の符号化 *: chapter_data_structure/number_encoding.md
- 3.4   文字の符号化 *: chapter_data_structure/character_encoding.md
- 3.3   数値エンコーディング *: chapter_data_structure/number_encoding.md
- 3.4   文字エンコーディング *: chapter_data_structure/character_encoding.md
- 3.5   まとめ: chapter_data_structure/summary.md
- 第 4 章   配列と連結リスト:
# [icon: material/view-list-outline]
@@ -82,10 +82,10 @@ nav:
- 5.2   キュー: chapter_stack_and_queue/queue.md
- 5.3   両端キュー: chapter_stack_and_queue/deque.md
- 5.4   まとめ: chapter_stack_and_queue/summary.md
- 第 6 章   ハッシュ:
- 第 6 章   ハッシュテーブル:
# [icon: material/table-search]
- chapter_hashing/index.md
- 6.1   ハッシュ: chapter_hashing/hash_map.md
- 6.1   ハッシュテーブル: chapter_hashing/hash_map.md
- 6.2   ハッシュ衝突: chapter_hashing/hash_collision.md
- 6.3   ハッシュアルゴリズム: chapter_hashing/hash_algorithm.md
- 6.4   まとめ: chapter_hashing/summary.md
@@ -96,13 +96,13 @@ nav:
- 7.2   二分木の走査: chapter_tree/binary_tree_traversal.md
- 7.3   二分木の配列表現: chapter_tree/array_representation_of_tree.md
- 7.4   二分探索木: chapter_tree/binary_search_tree.md
- 7.5   AVL木 *: chapter_tree/avl_tree.md
- 7.5   AVL 木 *: chapter_tree/avl_tree.md
- 7.6   まとめ: chapter_tree/summary.md
- 第 8 章   ヒープ:
# [icon: material/family-tree]
- chapter_heap/index.md
- 8.1   ヒープ: chapter_heap/heap.md
- 8.2   ヒープ構築操作: chapter_heap/build_heap.md
- 8.2   ヒープ構築: chapter_heap/build_heap.md
- 8.3   Top-k 問題: chapter_heap/top_k.md
- 8.4   まとめ: chapter_heap/summary.md
- 第 9 章   グラフ:
@@ -116,10 +116,10 @@ nav:
# [icon: material/text-search]
- chapter_searching/index.md
- 10.1   二分探索: chapter_searching/binary_search.md
- 10.2   二分探索の挿入: chapter_searching/binary_search_insertion.md
- 10.2   二分探索の挿入位置: chapter_searching/binary_search_insertion.md
- 10.3   二分探索の境界: chapter_searching/binary_search_edge.md
- 10.4   ハッシュ最適化戦略: chapter_searching/replace_linear_by_hashing.md
- 10.5   探索アルゴリズムの再認識: chapter_searching/searching_algorithm_revisited.md
- 10.4   ハッシュによる最適化戦略: chapter_searching/replace_linear_by_hashing.md
- 10.5   探索アルゴリズム再考: chapter_searching/searching_algorithm_revisited.md
- 10.6   まとめ: chapter_searching/summary.md
- 第 11 章   ソート:
# [icon: material/sort-ascending]
@@ -138,33 +138,33 @@ nav:
- 第 12 章   分割統治:
# [icon: material/set-split]
- chapter_divide_and_conquer/index.md
- 12.1   分割統治アルゴリズム: chapter_divide_and_conquer/divide_and_conquer.md
- 12.1   分割統治: chapter_divide_and_conquer/divide_and_conquer.md
- 12.2   分割統治探索戦略: chapter_divide_and_conquer/binary_search_recur.md
- 12.3   木の構築問題: chapter_divide_and_conquer/build_binary_tree_problem.md
- 12.4   ハノイの塔問題: chapter_divide_and_conquer/hanota_problem.md
- 12.3   二分木の構築問題: chapter_divide_and_conquer/build_binary_tree_problem.md
- 12.4   ハノイの塔問題: chapter_divide_and_conquer/hanota_problem.md
- 12.5   まとめ: chapter_divide_and_conquer/summary.md
- 第 13 章   バックトラッキング:
# [icon: material/map-marker-path]
- chapter_backtracking/index.md
- 13.1   バックトラッキングアルゴリズム: chapter_backtracking/backtracking_algorithm.md
- 13.2   全順列問題: chapter_backtracking/permutations_problem.md
- 13.3   部分集合和問題: chapter_backtracking/subset_sum_problem.md
- 13.4   Nクイーン問題: chapter_backtracking/n_queens_problem.md
- 13.3   部分和問題: chapter_backtracking/subset_sum_problem.md
- 13.4   n クイーン問題: chapter_backtracking/n_queens_problem.md
- 13.5   まとめ: chapter_backtracking/summary.md
- 第 14 章   動的計画法:
# [icon: material/table-pivot]
- chapter_dynamic_programming/index.md
- 14.1   動的計画法の初歩: chapter_dynamic_programming/intro_to_dynamic_programming.md
- 14.2   DP 問題特性: chapter_dynamic_programming/dp_problem_features.md
- 14.3   DP の解法の考え方: chapter_dynamic_programming/dp_solution_pipeline.md
- 14.4   0-1ナップサック問題: chapter_dynamic_programming/knapsack_problem.md
- 14.1   動的計画法入門: chapter_dynamic_programming/intro_to_dynamic_programming.md
- 14.2   動的計画法の問題特性: chapter_dynamic_programming/dp_problem_features.md
- 14.3   動的計画法の問題解決の考え方: chapter_dynamic_programming/dp_solution_pipeline.md
- 14.4   0-1 ナップサック問題: chapter_dynamic_programming/knapsack_problem.md
- 14.5   完全ナップサック問題: chapter_dynamic_programming/unbounded_knapsack_problem.md
- 14.6   編集距離問題: chapter_dynamic_programming/edit_distance_problem.md
- 14.7   まとめ: chapter_dynamic_programming/summary.md
- 第 15 章   貪欲法:
# [icon: material/head-heart-outline]
- chapter_greedy/index.md
- 15.1   貪欲アルゴリズム: chapter_greedy/greedy_algorithm.md
- 15.1   貪欲: chapter_greedy/greedy_algorithm.md
- 15.2   分数ナップサック問題: chapter_greedy/fractional_knapsack_problem.md
- 15.3   最大容量問題: chapter_greedy/max_capacity_problem.md
- 15.4   最大積分割問題: chapter_greedy/max_product_cutting_problem.md
@@ -173,7 +173,7 @@ nav:
# [icon: material/help-circle-outline]
- chapter_appendix/index.md
- 16.1   プログラミング環境のインストール: chapter_appendix/installation.md
- 16.2   一緒に作に参加する: chapter_appendix/contribution.md
- 16.2   一緒に作に参加しましょう: chapter_appendix/contribution.md
- 16.3   用語集: chapter_appendix/terminology.md
- 参考文献:
- chapter_reference/index.md