반응형
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 #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- python #백준 #9375 #패션왕 #신해빈
- dfs #leetcode #python
- Python #leetcode #dfs #그래프 #백트래킹
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 아스테리스크 #Asterisk #파이썬
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- gcd #최대공약수 #백준 #2981 #검문
- dfs #bfs #이진트리 #파이썬 #리트코드
- 2004 #조합 0의 개수 #백준
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- dfs #bfs #leetcode #python
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #python #leetcode
- 리트코드 #팰린드롬 #파이썬
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- 파이썬 #zip
- dfs #그래프 #graph #python #leetcode #course #schedule
- leetcode #subsets #dfs #itertools #python
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- leetcode #python #dfs #재귀
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 코틀린 #Do it #깡샘 #안드로이드
- final #java #자바 #안드로이드
- dfs #python #leetcode #combination
- dfs #leetcode #python #graph #그래프
Archives
- Today
- Total
목록dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python (1)
멋진 개발자가 되고 싶다
[LeetCode/Python] 297.이진 트리 직렬화 & 역직렬화(Serialize and Deserialize Bonary Tree)
이진 트리를 배열로 직렬화하고, 반대로 역직렬화하는 기능을 구현하라. 즉 다음과 같은 트리는 [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 ' '.j..
Algorithm Study/leetcode
2021. 8. 8. 13:15