일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- bootstrap
- dynaminprogramming
- ubuntu
- 2909
- HTML
- 크롤링
- Crawling
- baekjun
- 라즈비안
- springboot3.x
- 파이썬
- 2579
- 백준
- 트리
- 라즈베리파이3
- Python
- 라즈베리파이3b+
- node.js
- nav-tab
- CSS
- MongoDB
- NAV
- 라즈베리파이
- 13237
- 16.04
- dp
- 알고리즘
- Algorythm
- raspberrypi
- algotythm
Archives
- Today
- Total
목록1991 (1)
노트
[백준] 1991번 트리 순회 python
n = int(input()) tree = {} for _ in range(n): root, left, right = input().split() tree[root] = [left,right] def preorder(a): if a is not '.': print(a,end='') preorder(tree[a][0]) preorder(tree[a][1]) def inorder(a): if a is not '.': inorder(tree[a][0]) print(a,end='') inorder(tree[a][1]) def postorder(a): if a is not '.': postorder(tree[a][0]) postorder(tree[a][1]) print(a,end='') preorder('A') ..
알고리즘
2023. 9. 12. 13:47