반응형
250x250
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
- dfs #leetcode #python
- leetcode #python #dfs #재귀
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #bfs #leetcode #python
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- 리트코드 #팰린드롬 #파이썬
- dfs #leetcode #python #graph #그래프
- leetcode #subsets #dfs #itertools #python
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- python #백준 #9375 #패션왕 #신해빈
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- Python #leetcode #dfs #그래프 #백트래킹
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- dfs #python #leetcode
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- 코틀린 #Do it #깡샘 #안드로이드
- dfs #python #leetcode #combination
- dfs #그래프 #graph #python #leetcode #course #schedule
- gcd #최대공약수 #백준 #2981 #검문
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #bfs #이진트리 #파이썬 #리트코드
- 파이썬 #zip
- final #java #자바 #안드로이드
- 2004 #조합 0의 개수 #백준
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 297.이진 트리 직렬화 & 역직렬화(Serialize and Deserialize Bonary Tree) 본문
Algorithm Study/leetcode
[LeetCode/Python] 297.이진 트리 직렬화 & 역직렬화(Serialize and Deserialize Bonary Tree)
오패산개구리 2021. 8. 8. 13:15728x90
반응형
이진 트리를 배열로 직렬화하고, 반대로 역직렬화하는 기능을 구현하라.
즉 다음과 같은 트리는 [1,2,3,null,,null,4,5] 형태로 직렬화할 수 있을 것이다.
1. 직렬화 & 역직렬화 구현
(1) 직렬화
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
def serialize(self, root):
# BFS로 구현
queue = collections.deque([root])
output = ['#']
while queue:
node = queue.popleft()
if node:
queue.append(node.left)
queue.append(node.right)
output.append(str(node.val))
else:
output.append('#')
return ' '.join(output)
|
cs |
해설
DFS로도 구현할 수 있지만
직관적으로 직렬화하기 위해 BFS로 구현하였다.
output에 index 1부터 채워 나가는데
node가 None일 경우 '#'을 넣어주었다.
최종적으로 str 값을 출력해야 하므로
리스트의 값들을 합쳐서 str로 리턴했다.
(2) 역직렬화
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
def deserialize(self, data):
# 예외 처리
if data == "# #":
return None
nodes = data.split()
root = TreeNode(int(nodes[1]))
queue = collections.deque([root])
index = 2
# 빠른 런너처럼 자식 노드 결과를 먼저 확인 후 큐 삽입
while queue:
node = queue.popleft()
if nodes[index] is not '#':
node.left = TreeNode(int(nodes[index]))
queue.append(node.left)
index += 1
if nodes[index] is not '#':
node.right = TreeNode(int(nodes[index]))
queue.append(node.right)
index += 1
return root
|
cs |
해설
root가 None 값이 주어질 경우
data에는 '# #'이 들어가게 예외처리를 해주었다.
(한번 해봐라)
nodes를 통해 data를 다시 리스트화 해주었고
root가 우리가 최종적으로 리턴할 트리이다.
어차피 nodes에는 순서대로 값이 들어있으니까
index를 통해 root에 잎사귀들을 추가해준다.
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
336. Palindrome Pairs (0) | 2021.11.17 |
---|---|
[LeetCode/Python]110.균형 이진 트리(Balanced Binary Tree) (0) | 2021.08.08 |
[LeetCode/Python] 226.이진 트리 반전(Invert Binary Tree) (0) | 2021.08.07 |
[LeetCode/Python] 687.가장 긴 동일 값의 경로(Longest Univalue Path) (0) | 2021.08.07 |
[LeetCode/Python] 543.이진 트리의 직경(Diameter of Binary Tree) (0) | 2021.08.07 |