mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-15 22:57:48 +08:00
51 lines
1.3 KiB
Dart
51 lines
1.3 KiB
Dart
/**
|
|
* 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;
|
|
}
|