export function TreeNode(x) { this.val = x this.left = null this.right = null } export function Serialize(pRoot) { console.log(pRoot) } /** * * @param s * @constructor */ export function Deserialize(s) { console.log(s) }