Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 210 Bytes

中序遍历.md

File metadata and controls

10 lines (10 loc) · 210 Bytes
public static void preOrderRecur(TreeNode head) {
    if (head == null) {
        return;
    }
    preOrderRecur(head.left);
    System.out.print(head.value + " ");
    preOrderRecur(head.right);
}