이진 트리 반전
2392 단어 javascriptleetcode
예 1:
입력: 루트 = [4,2,7,1,3,6,9]
출력: [4,7,2,9,6,3,1]
/**
* 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}
*/
var invertTree = function (root) {
const invert = (root) => {
if (root === null) {
return;
}
let leftNode = root.left;
root.left = root.right;
root.right = leftNode;
invert(root.left);
invert(root.right);
};
invert(root);
return root;
};
Reference
이 문제에 관하여(이진 트리 반전), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/invert-binary-tree-4kg6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)