[LeetCode] 145. Binary Tree Postorder Traversal - 문제풀이
Description 주어진 이진 트리를 후위순회(postorder)하며 결과를 반환하는문제입니다. Given the root of a binary tree, return the postorder traversal of its nodes' values. Example 1: Input: root = [1,null,2,3] Output: [3,2,1] Example 2: Input: root = [] Output: [] Example 3: Input: root = [1] Output: [1] Constraints: The number of the nodes in the tree is in the range [0, 100]. 100 root순으로 반복 호출하며 기록해 나갑니다. Solution 2. 반복(It..