//巧妙做法 先得到二叉树的深度 然后将数组填充进去 维护三个类变量即可 //得到二叉树的 深度 size public static int getTreeSize(TreeNode node) { if (node == null) { return 0; } return 1 + getTreeSize(node.left) + getTreeSize(node.right); } static int pre = 0, mid = 0, post = 0; public static int[][] threeOrders(TreeNo...