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.
117 lines
2.9 KiB
117 lines
2.9 KiB
/**
|
|
* File: PrintUtil.java
|
|
* Created Time: 2022-11-25
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
package utils;
|
|
|
|
import java.util.*;
|
|
|
|
class Trunk {
|
|
Trunk prev;
|
|
String str;
|
|
|
|
Trunk(Trunk prev, String str) {
|
|
this.prev = prev;
|
|
this.str = str;
|
|
}
|
|
};
|
|
|
|
public class PrintUtil {
|
|
/* Print matrix (Array) */
|
|
public static <T> void printMatrix(T[][] matrix) {
|
|
System.out.println("[");
|
|
for (T[] row : matrix) {
|
|
System.out.println(" " + row + ",");
|
|
}
|
|
System.out.println("]");
|
|
}
|
|
|
|
/* Print matrix (List) */
|
|
public static <T> void printMatrix(List<List<T>> matrix) {
|
|
System.out.println("[");
|
|
for (List<T> row : matrix) {
|
|
System.out.println(" " + row + ",");
|
|
}
|
|
System.out.println("]");
|
|
}
|
|
|
|
/* Print linked list */
|
|
public static void printLinkedList(ListNode head) {
|
|
List<String> list = new ArrayList<>();
|
|
while (head != null) {
|
|
list.add(String.valueOf(head.val));
|
|
head = head.next;
|
|
}
|
|
System.out.println(String.join(" -> ", list));
|
|
}
|
|
|
|
/* Print binary tree */
|
|
public static void printTree(TreeNode root) {
|
|
printTree(root, null, false);
|
|
}
|
|
|
|
/**
|
|
* Print binary tree
|
|
* This tree printer is borrowed from TECHIE DELIGHT
|
|
* https://www.techiedelight.com/c-program-print-binary-tree/
|
|
*/
|
|
public static void printTree(TreeNode root, Trunk prev, boolean isRight) {
|
|
if (root == null) {
|
|
return;
|
|
}
|
|
|
|
String prev_str = " ";
|
|
Trunk trunk = new 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);
|
|
System.out.println(" " + root.val);
|
|
|
|
if (prev != null) {
|
|
prev.str = prev_str;
|
|
}
|
|
trunk.str = " |";
|
|
|
|
printTree(root.left, trunk, false);
|
|
}
|
|
|
|
public static void showTrunks(Trunk p) {
|
|
if (p == null) {
|
|
return;
|
|
}
|
|
|
|
showTrunks(p.prev);
|
|
System.out.print(p.str);
|
|
}
|
|
|
|
/* Print hash table */
|
|
public static <K, V> void printHashMap(Map<K, V> map) {
|
|
for (Map.Entry<K, V> kv : map.entrySet()) {
|
|
System.out.println(kv.getKey() + " -> " + kv.getValue());
|
|
}
|
|
}
|
|
|
|
/* Print heap (Priority queue) */
|
|
public static void printHeap(Queue<Integer> queue) {
|
|
List<Integer> list = new ArrayList<>(queue);
|
|
System.out.print("Array representation of the heap:");
|
|
System.out.println(list);
|
|
System.out.println("Tree representation of the heap:");
|
|
TreeNode root = TreeNode.listToTree(list);
|
|
printTree(root);
|
|
}
|
|
}
|