You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/dart/utils/print_util.dart

92 lines
1.7 KiB

/**
* 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 a matrix (Array) */
void printMatrix(List<List<int>> matrix) {
print("[");
for (List<int> row in matrix) {
print(" $row,");
}
print("]");
}
/* Print a linked list */
void printLinkedList(ListNode? head) {
List<String> list = [];
while (head != null) {
list.add('${head.val}');
head = head.next;
}
print(list.join(' -> '));
}
/**
* The interface of the tree printer
* 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);
}
/* Helper function to print branches of the binary tree */
void showTrunks(Trunk? p) {
if (p == null) {
return;
}
showTrunks(p.prev);
stdout.write(p.str);
}
/* Print a heap (PriorityQueue) */
void printHeap(List<int> heap) {
print("堆的数组表示:$heap");
print("堆的树状表示:");
TreeNode? root = listToTree(heap);
printTree(root);
}