mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-23 18:11:45 +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
91 lines
1.6 KiB
Dart
91 lines
1.6 KiB
Dart
/**
|
|
* 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);
|
|
}
|
|
|
|
/* Print matrix (Array) */
|
|
void printMatrix(List<List<int>> matrix) {
|
|
print("[");
|
|
for (List<int> row in matrix) {
|
|
print(" $row,");
|
|
}
|
|
print("]");
|
|
}
|
|
|
|
/* Print linked list */
|
|
void printLinkedList(ListNode? head) {
|
|
List<String> list = [];
|
|
|
|
while (head != null) {
|
|
list.add('${head.val}');
|
|
head = head.next;
|
|
}
|
|
|
|
print(list.join(' -> '));
|
|
}
|
|
|
|
/**
|
|
* Print binary tree
|
|
* 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);
|
|
}
|
|
|
|
/* Print heap */
|
|
void printHeap(List<int> heap) {
|
|
print("Array representation of heap: $heap");
|
|
print("Heap tree representation:");
|
|
TreeNode? root = listToTree(heap);
|
|
printTree(root);
|
|
}
|