Skip to content

94-binary-tree-inorder-traversal

DevGod
DevGod
Vtuber
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {number[]}
*/
var inorderTraversal = function(root, ans=[]) {
if(!root){return [];}
if(root.left !== null){inorderTraversal(root.left, ans);}
ans.push(root.val);
if(root.right !== null){inorderTraversal(root.right, ans);}
return ans;
};