leetcode --- js版本

leetcode-tree-94-Binary Tree Ino

2019-06-19  本文已影响0人  石头说钱

94. Binary Tree Inorder Traversal

Binary Tree Inorder Traversal
中序遍历二叉树

注意二叉树并不是左节点小于父节点,右节点大于父节点,二叉搜索树才符合(BST)


Input: [1,null,2,3]
   1
    \
     2
    /
   3

Output: [1,3,2]

// recursive,中序遍历
function inorderTraversal(root,arr = []){
    if(root){
        inorderTraversal(root.left)
        arr.push(root.val)
        inorderTraversal(root.right)

    }
    return arr

}
function inorderTraversal(root){
    const arr = []
    const stack = []
    let node = root;

    while(node || stack.lenght){
        while(node){
            stack.push(node.left)
            node = node.left
        }

        node = stack.pop() //出栈
        arr.push(node)
        node = node.right
    }
    return arr
}
上一篇 下一篇

猜你喜欢

热点阅读