```/* * function TreeNode(x) { * this.val = x; * this.left = null; * this.right = null; * } */ /** * * @param root TreeNode类 * @param sum int整型 * @return bool布尔型 */ function hasPathSum( root , sum ) { // write code here //如果存在这条路径,那么设想第一层是根节点,第二层是子节点,第二层之后相加的值应为sum...