题解 | #反转链表#

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

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整型二维数组
 */
function threeOrders( root ) {
    // write code here
    const res = [[],[],[]];
    const dfs = (node) => {
        if(!node) return;
        res[0].push(node.val);
        dfs(node.left);
        res[1].push(node.val);
        dfs(node.right);
        res[2].push(node.val);
    }
    dfs(root);
    return res;
}
module.exports = {
    threeOrders : threeOrders
};
全部评论

相关推荐

躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
评论
5
收藏
分享
牛客网
牛客企业服务