DEV Community

hwangs12
hwangs12

Posted on

Invert Binary Tree - JS

/**
 * 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 {TreeNode}
 */
// DFS
function invertTree(root) {
    if (root === null) return root
  var temp = root.left;
  root.left = root.right;
  root.right = temp;
  invertTree(root.left);
  invertTree(root.right);
  return root;
}

Enter fullscreen mode Exit fullscreen mode

Top comments (0)