题解 | #实现二叉树先序,中序和后序遍历#

实现二叉树先序,中序和后序遍历

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

/*
 * function TreeNode(x) {
 *   this.val = x;
 *   this.left = null;
 *   this.right = null;
 * }
 */

/**
 * 
 * @param root TreeNode类 the root of binary tree
 * @return int整型二维数组
 */
let pre = [];
let mid = [];
let post = [];
function threeOrders( root ) {
    
    if (root != null) {
        preorder(root);
        midorder(root);
        postorder(root);
    }
    const res = [pre, mid, post];
    return res;
}

function preorder(root) {
    if (root == null) {
        return;
    }
    pre.push(root.val);
    preorder(root.left);
    preorder(root.right);
}

function midorder(root) {
    if (root == null) {
        return;
    }
    midorder(root.left);
    mid.push(root.val);
    midorder(root.right);
}


function postorder(root) {
    if (root == null) {
        return;
    }
    postorder(root.left);
    postorder(root.right);
    post.push(root.val);
}

module.exports = {
    threeOrders : threeOrders
};
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:46
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务