226. 이진 트리 반전
설명:
이진 트리를 반전시킵니다.
해결책:
시간 복잡도 : O(n)
공간 복잡도: O(n)
// DFS approach
// In the recursion, you will traverse the tree until you hit to the bottom most leaf node
// The the right and left children of the current node will switch sides
// From the bottom going up, the ancestor nodes will switch their right and left child
// When we reach the root node, the tree will have been inverted
var invertTree = function(root) {
// Stop when we reach a null value
if(!root) return null;
// Traverse the left side of the tree down to the leaf node
const left = invertTree(root.left)
// Traverse the right side of the tree down to the leaf node
const right = invertTree(root.right)
// Switch the placement of the children
root.left = right
root.right = left
// Return the current node
return root
};
Reference
이 문제에 관하여(226. 이진 트리 반전), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/cod3pineapple/226-invert-binary-tree-5eib텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)