mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-03 10:53:35 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
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)
|
|
*/
|
|
|
|
/* Binary tree node class */
|
|
class TreeNode {
|
|
int val; // Node value
|
|
int height; // Node height
|
|
TreeNode? left; // Reference to left child node
|
|
TreeNode? right; // Reference to right child node
|
|
|
|
/* Constructor */
|
|
TreeNode(this.val, [this.height = 0, this.left, this.right]);
|
|
}
|
|
|
|
/* Deserialize a list into a binary tree: recursion */
|
|
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;
|
|
}
|
|
|
|
/* Deserialize a list into a binary tree */
|
|
TreeNode? listToTree(List<int?> arr) {
|
|
return listToTreeDFS(arr, 0);
|
|
}
|
|
|
|
/* Serialize a binary tree into a list: recursion */
|
|
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);
|
|
}
|
|
|
|
/* Serialize a binary tree into a list */
|
|
List<int?> treeToList(TreeNode? root) {
|
|
List<int?> res = [];
|
|
treeToListDFS(root, 0, res);
|
|
return res;
|
|
}
|