mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 12:36:30 +08:00
034ee65e9a
* Fix the comment in array_deque.go * Fix the comment in bucket_sort.c * Translate the Java code comments to Chinese * Bug fixes * 二分查找 -> 二分搜尋 * Harmonize comments in `utils` between multiple programming languages
116 lines
2.9 KiB
Java
Executable file
116 lines
2.9 KiB
Java
Executable file
/**
|
||
* 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 {
|
||
/* 打印矩阵(Array) */
|
||
public static <T> void printMatrix(T[][] matrix) {
|
||
System.out.println("[");
|
||
for (T[] row : matrix) {
|
||
System.out.println(" " + row + ",");
|
||
}
|
||
System.out.println("]");
|
||
}
|
||
|
||
/* 打印矩阵(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("]");
|
||
}
|
||
|
||
/* 打印链表 */
|
||
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));
|
||
}
|
||
|
||
/* 打印二叉树 */
|
||
public static void printTree(TreeNode root) {
|
||
printTree(root, null, false);
|
||
}
|
||
|
||
/**
|
||
* 打印二叉树
|
||
* 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);
|
||
}
|
||
|
||
/* 打印哈希表 */
|
||
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());
|
||
}
|
||
}
|
||
|
||
/* 打印堆(优先队列) */
|
||
public static void printHeap(Queue<Integer> queue) {
|
||
List<Integer> list = new ArrayList<>(queue);
|
||
System.out.print("堆的数组表示:");
|
||
System.out.println(list);
|
||
System.out.println("堆的树状表示:");
|
||
TreeNode root = TreeNode.listToTree(list);
|
||
printTree(root);
|
||
}
|
||
}
|