跳至主要內容

序列化二叉树

微信公众号:储凡Less than 1 minute

序列化二叉树

题目链接

题目描述

刷题思路

代码实现

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)
}

一些建议