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 |
Tags
- react
- 백준 #7568번 #파이썬 #동적계획법
- Chrome Extension
- 동적계획법
- content script
- 캠스터디
- C언어로 쉽게 풀어쓴 자료구조
- Message Passing
- 백준 7579
- discord.js
- nodejs
- 크롬 익스텐션
- 백준
- 자료구조
- popup
- 크롬 확장자
- X
- 프로그래머스 #정수삼각형 #동적계획법
- 2156
- 공부시간측정어플
- background script
- 갓생
- supabase
- 포도주시식
- TypeScript
- 파이썬
- 디스코드 봇
- webpack
Archives
- Today
- Total
히치키치
[백준] 2263번 : 트리의 순회 - Python(파이썬) 본문
문제
https://www.acmicpc.net/problem/2263
풀이
- 중위 순회 : root 왼쪽 자식 - root - root 오른쪽 자식
- 후위 순회 : root 왼쪽 자식 - root 오른쪽 자식 - root
- 전위 순회 : root - root 왼쪽 자식 - root 오른쪽 자식
- 후위 순회 마지막 노드 = 중위 순회의 루트 노드
- 후위 순회에서 루트를 뽑기 -> 전위 순회에 차례로 붙이기
- 루트 노드 찾아서 왼쪽 오른쪽 나눠서 재귀 진행 (왼쪽 실행 -> 오른쪽 실행)
예시
후위 순회 : 3 4 2 6 7 5 1
중위 순회 : 3 2 4 1 6 5 7
- 중위 순회를 이용해 후위 순회에서 왼쪽/오른쪽 서브트리 구분 가능
코드
#문제 : https://www.acmicpc.net/problem/2263
import sys
input=sys.stdin.readline
sys.setrecursionlimit(10**9)
def divide(in_start,in_end,post_start,post_end):
if (post_start>post_end) or (in_start>in_end): #재귀 종료 : 수렴
return
root=post_[post_end] #후위 순회 마지막은 루트
print(root,end=' ')
lt=idx[root]-in_start #중위 순회 루트 기준 왼쪽 : left
rt=in_end-idx[root] #중위 순회 루트 기준 오른쪽 : rigth
divide(in_start,in_start+lt-1,post_start,post_start+lt-1) #왼쪽 서브트리
divide(in_end-rt+1, in_end, post_end-rt, post_end-1) #오른쪽 서브트리
n=int(input())
in_=list(map(int,input().split()))
post_=list(map(int,input().split()))
idx=[0]*(n+1)
for i in range(n): #in-order 값의 index 저장
idx[in_[i]]=i
divide(0,n-1,0,n-1)
'알고리즘 스터디' 카테고리의 다른 글
[백준] 1516번 : 개임 개발 - Python(파이썬) (0) | 2021.08.10 |
---|---|
[백준] 1973번 : 욕심쟁이 판다 - Python(파이썬) (0) | 2021.08.03 |
[백준] 1520번 : 내리막길 - Python(파이썬) (0) | 2021.08.03 |
[백준] 4179번 : 불! - Python(파이썬) (0) | 2021.07.27 |
[백준] 15685번 : 드래곤 커브 - Python(파이썬) (0) | 2021.07.13 |
Comments