leetcode 655. 輸出二叉樹 【時間擊敗100.00%】 【內存擊敗96.49%】

1 public List<List<String>> printTree(TreeNode root) { 2 ArrayList<List<String>> al = new ArrayList<>(); 3 if (root == null) return al; 4 if (root.left == null && root.righ
相關文章
相關標籤/搜索