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.
91 lines
1.6 KiB
91 lines
1.6 KiB
7 months ago
|
/**
|
||
|
* 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);
|
||
|
}
|