java实现,写简单点 public class Solution { /** * * @param root TreeNode类 the root of binary tree * @return int整型二维数组 */ private List<Integer> list = new ArrayList<>(); public int[][] threeOrders (TreeNode root) { // write code here int [][] arr ...