mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 05:26:31 +08:00
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);
|
||
|
}
|
||
|
|
||
|
/* 列印矩陣 (Array) */
|
||
|
void printMatrix(List<List<int>> matrix) {
|
||
|
print("[");
|
||
|
for (List<int> row in matrix) {
|
||
|
print(" $row,");
|
||
|
}
|
||
|
print("]");
|
||
|
}
|
||
|
|
||
|
/* 列印鏈結串列 */
|
||
|
void printLinkedList(ListNode? head) {
|
||
|
List<String> list = [];
|
||
|
|
||
|
while (head != null) {
|
||
|
list.add('${head.val}');
|
||
|
head = head.next;
|
||
|
}
|
||
|
|
||
|
print(list.join(' -> '));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 列印二元樹
|
||
|
* 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);
|
||
|
}
|
||
|
|
||
|
/* 列印堆積 */
|
||
|
void printHeap(List<int> heap) {
|
||
|
print("堆積的陣列表示:$heap");
|
||
|
print("堆積的樹狀表示:");
|
||
|
TreeNode? root = listToTree(heap);
|
||
|
printTree(root);
|
||
|
}
|