mirror of
https://github.com/krahets/hello-algo.git
synced 2026-09-01 04:47:12 +00:00
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:
@@ -0,0 +1,54 @@
|
||||
/**
|
||||
* File: hanota.dart
|
||||
* Created Time: 2023-08-10
|
||||
* Author: liuyuxin (gvenusleo@gmail.com)
|
||||
*/
|
||||
|
||||
/* 円盤を 1 枚移動 */
|
||||
void move(List<int> src, List<int> tar) {
|
||||
// src の上から円盤を1枚取り出す
|
||||
int pan = src.removeLast();
|
||||
// 円盤を tar の上に置く
|
||||
tar.add(pan);
|
||||
}
|
||||
|
||||
/* ハノイの塔の問題 f(i) を解く */
|
||||
void dfs(int i, List<int> src, List<int> buf, List<int> tar) {
|
||||
// src に円盤が 1 枚だけ残っている場合は、そのまま tar へ移す
|
||||
if (i == 1) {
|
||||
move(src, tar);
|
||||
return;
|
||||
}
|
||||
// 部分問題 f(i-1):src の上部 i-1 枚の円盤を tar を補助にして buf へ移す
|
||||
dfs(i - 1, src, tar, buf);
|
||||
// 部分問題 f(1):src に残る 1 枚の円盤を tar に移す
|
||||
move(src, tar);
|
||||
// 部分問題 f(i-1):buf の上部 i-1 枚の円盤を src を補助にして tar へ移す
|
||||
dfs(i - 1, buf, src, tar);
|
||||
}
|
||||
|
||||
/* ハノイの塔を解く */
|
||||
void solveHanota(List<int> A, List<int> B, List<int> C) {
|
||||
int n = A.length;
|
||||
// A の上から n 枚の円盤を B を介して C へ移す
|
||||
dfs(n, A, B, C);
|
||||
}
|
||||
|
||||
/* Driver Code */
|
||||
void main() {
|
||||
// リスト末尾が柱の頂上
|
||||
List<int> A = [5, 4, 3, 2, 1];
|
||||
List<int> B = [];
|
||||
List<int> C = [];
|
||||
print("初期状態:");
|
||||
print("A = $A");
|
||||
print("B = $B");
|
||||
print("C = $C");
|
||||
|
||||
solveHanota(A, B, C);
|
||||
|
||||
print("円盤の移動完了後:");
|
||||
print("A = $A");
|
||||
print("B = $B");
|
||||
print("C = $C");
|
||||
}
|
||||
Reference in New Issue
Block a user