/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * * @param root TreeNode类 the root of binary tree * @return int整型二维数组 */ function threeOrders( root ) { // write code here const res = [[],[],[]]; const dfs = (node) => { ...