题解 | #二叉树的镜像#

二叉树的镜像

http://www.nowcoder.com/practice/a9d0ecbacef9410ca97463e4a5c83be7

感悟:我在题解中看到好一些递归 但是这个递归更加自然好想 我也是这么想的


  function TreeNode(x) {
    this.val = x;
    this.left = null;
    this.right = null;
  }
 
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param pRoot TreeNode类 
 * @return TreeNode类
 */
function Mirror( pRoot ) {
    // write code here
    if(!pRoot) return null
    let left=new TreeNode(-1)
    let right=new TreeNode(-1)
    left=Mirror(pRoot.left)
    right=Mirror(pRoot.right)
    pRoot.left=right
    pRoot.right=left
     
    return pRoot
   
}
module.exports = {
    Mirror : Mirror
};
全部评论

相关推荐

评论
点赞
收藏
分享
牛客网
牛客企业服务