Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 종만북
- programmers
- C
- web
- greedy
- String
- udemy
- BOJ
- sorting
- Algospot
- C언어
- 정수론
- 생활코딩
- dfs
- Math
- Python
- graph
- 따배씨
- 인프런
- Algorithm
- JavaScript
- Cleancode
- php
- 따라하며 배우는 C언어
- 따라하면서 배우는 C언어
- BFS
- 백준
- server
- BASIC
- DP
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1991 / 트리 순회 / Python 파이썬 본문
[BOJ] 1991 / 트리 순회 / Python 파이썬
https://www.acmicpc.net/problem/1991
풀이
트리 순회의 기본 문제이다.
- 전위 순회(pre-order): Root -> Left -> Right
- 중위 순회(in-order): Left -> Root -> Right
- 후위 순회(post-order): Left -> Right -> Root
N = int(input())
tree = {}
for _ in range(N):
node, left, right = input().split()
tree[node] = [left, right]
def preOrder(node):
if node == '.':
return
print(node, end="")
preOrder(tree[node][0])
preOrder(tree[node][1])
def inOrder(node):
if node == '.':
return
inOrder(tree[node][0])
print(node, end="")
inOrder(tree[node][1])
def postOrder(node):
if node == '.':
return
postOrder(tree[node][0])
postOrder(tree[node][1])
print(node, end="")
preOrder('A')
print()
inOrder('A')
print()
postOrder('A')
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1167 / 트리의 지름 / Python 파이썬 (0) | 2021.06.15 |
---|---|
[BOJ] 11725 / 트리의 부모 찾기 / Python 파이썬 (0) | 2021.06.14 |
[BOJ] 2146 / 다리 만들기 / Python 파이썬 (0) | 2021.06.13 |
[BOJ] 2178 / 미로 탐색 / Python 파이썬 (0) | 2021.06.13 |
[BOJ] 7576 / 토마토 / Python 파이썬 (0) | 2021.06.10 |
Comments