2.1 树 找到某节点的路径 参考答案: 查找某个节点的路径的方法通常有两种,一种是递归算法,另一种是非递归算法 定义树节点 // 树节点定义 class TreeNode{ constructor(value){ this.value = value; this.left = null; this.right = null; } } 构建树 // 构建树 let root = new TreeNode(1); root.left = new TreeNode(2); root.right = new TreeNode(3);...