Skip to content

Commit 3ae21e2

Browse files
authored
Create 0145-binary-tree-postorder-traversal.py
1 parent 2dd06cd commit 3ae21e2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class Solution:
2+
def postorderTraversal(self, root: Optional[TreeNode]) -> List[int]:
3+
stack = [root]
4+
visit = [False]
5+
res = []
6+
7+
while stack:
8+
cur, v = stack.pop(), visit.pop()
9+
if cur:
10+
if v:
11+
res.append(cur.val)
12+
else:
13+
stack.append(cur)
14+
visit.append(True)
15+
stack.append(cur.right)
16+
visit.append(False)
17+
stack.append(cur.left)
18+
visit.append(False)
19+
return res

0 commit comments

Comments
 (0)