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
+24
View File
@@ -0,0 +1,24 @@
/**
* File: list_node.dart
* Created Time: 2023-01-23
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/
/* 連結リストノード */
class ListNode {
int val;
ListNode? next;
ListNode(this.val, [this.next]);
}
/* リストを連結リストにデシリアライズする */
ListNode? listToLinkedList(List<int> list) {
ListNode dum = ListNode(0);
ListNode? head = dum;
for (int val in list) {
head?.next = ListNode(val);
head = head?.next;
}
return dum.next;
}
+90
View File
@@ -0,0 +1,90 @@
/**
* File: print_util.dart
* Created Time: 2023-01-23
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/
import 'dart:io';
import 'list_node.dart';
import 'tree_node.dart';
class Trunk {
Trunk? prev;
String str;
Trunk(this.prev, this.str);
}
/* 行列を出力する (Array) */
void printMatrix(List<List<int>> matrix) {
print("[");
for (List<int> row in matrix) {
print(" $row,");
}
print("]");
}
/* 連結リストを出力 */
void printLinkedList(ListNode? head) {
List<String> list = [];
while (head != null) {
list.add('${head.val}');
head = head.next;
}
print(list.join(' -> '));
}
/**
* 二分木を出力
* This tree printer is borrowed from TECHIE DELIGHT
* https://www.techiedelight.com/c-program-print-binary-tree/
*/
void printTree(TreeNode? root, [Trunk? prev = null, bool isRight = false]) {
if (root == null) {
return;
}
String prev_str = ' ';
Trunk trunk = Trunk(prev, prev_str);
printTree(root.right, trunk, true);
if (prev == null) {
trunk.str = '———';
} else if (isRight) {
trunk.str = '/———';
prev_str = ' |';
} else {
trunk.str = '\\———';
prev.str = prev_str;
}
showTrunks(trunk);
print(' ${root.val}');
if (prev != null) {
prev.str = prev_str;
}
trunk.str = ' |';
printTree(root.left, trunk, false);
}
void showTrunks(Trunk? p) {
if (p == null) {
return;
}
showTrunks(p.prev);
stdout.write(p.str);
}
/* ヒープを出力 */
void printHeap(List<int> heap) {
print("ヒープの配列表現:$heap");
print("ヒープの木構造表示:");
TreeNode? root = listToTree(heap);
printTree(root);
}
+50
View File
@@ -0,0 +1,50 @@
/**
* File: tree_node.dart
* Created Time: 2023-2-12
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/
/* 二分木ノードクラス */
class TreeNode {
int val; // ノード値
int height; // ノードの高さ
TreeNode? left; // 左子ノードへの参照
TreeNode? right; // 右子ノードへの参照
/* コンストラクタ */
TreeNode(this.val, [this.height = 0, this.left, this.right]);
}
/* リストを二分木にデシリアライズする: 再帰 */
TreeNode? listToTreeDFS(List<int?> arr, int i) {
if (i < 0 || i >= arr.length || arr[i] == null) {
return null;
}
TreeNode? root = TreeNode(arr[i]!);
root.left = listToTreeDFS(arr, 2 * i + 1);
root.right = listToTreeDFS(arr, 2 * i + 2);
return root;
}
/* リストを二分木にデシリアライズする */
TreeNode? listToTree(List<int?> arr) {
return listToTreeDFS(arr, 0);
}
/* 二分木をリストにシリアライズする: 再帰 */
void treeToListDFS(TreeNode? root, int i, List<int?> res) {
if (root == null) return;
while (i >= res.length) {
res.add(null);
}
res[i] = root.val;
treeToListDFS(root.left, 2 * i + 1, res);
treeToListDFS(root.right, 2 * i + 2, res);
}
/* 二分木をリストにシリアライズする */
List<int?> treeToList(TreeNode? root) {
List<int?> res = [];
treeToListDFS(root, 0, res);
return res;
}
+29
View File
@@ -0,0 +1,29 @@
/**
* File: Vertex.dart
* Created Time: 2023-05-15
* Author: liuyuxin (gvenusleo@gmail.com)
*/
/* 頂点クラス */
class Vertex {
int val;
Vertex(this.val);
/* 値リスト vals を入力し、頂点リスト vets を返す */
static List<Vertex> valsToVets(List<int> vals) {
List<Vertex> vets = [];
for (int i in vals) {
vets.add(Vertex(i));
}
return vets;
}
/* 頂点リスト vets を入力し、値リスト vals を返す */
static List<int> vetsToVals(List<Vertex> vets) {
List<int> vals = [];
for (Vertex vet in vets) {
vals.add(vet.val);
}
return vals;
}
}