일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 운영체제
- 109. Convert Sorted List to Binary Search Tree
- LeetCode
- Generator
- concurrency
- DWG
- 715. Range Module
- 컴퓨터의 구조
- Decorator
- Protocol
- 30. Substring with Concatenation of All Words
- Convert Sorted List to Binary Search Tree
- 시바견
- Python
- iterator
- kaggle
- 43. Multiply Strings
- Python Implementation
- data science
- shiba
- Regular Expression
- attribute
- 프로그래머스
- Python Code
- 밴픽
- Class
- 315. Count of Smaller Numbers After Self
- Substring with Concatenation of All Words
- t1
- 파이썬
Archives
- Today
- Total
Scribbling
LeetCode: 116. Populating Next Right Pointers in Each Node 본문
Computer Science/Coding Test
LeetCode: 116. Populating Next Right Pointers in Each Node
focalpoint 2021. 11. 2. 14:42O(N) 메모리를 사용한다면 매우 쉬운 문제이지만,
아래 Follow-up을 반영하여 O(1) 메모리를 사용하여 푸는 것은 조금 생각이 필요하다.
Constant Memory로 어찌 풀지 생각하다가 아래 조건에서 힌트를 얻었다.
Node의 개수에 제한이 있다는 것. Perfect Binary Tree에서 이와 같은 조건은 곧 최대 높이로 직결된다.
이를 활용하면, 트리의 층마다 last node 주소를 저장해놓고 갱신하는 방식으로 풀 수 있다.
"""
# Definition for a Node.
class Node:
def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None):
self.val = val
self.left = left
self.right = right
self.next = next
"""
class Solution:
def connect(self, root: 'Node') -> 'Node':
if not root:
return
self.node_address = [None] * 12
self.dfs(root, 0)
return root
def dfs(self, node, height):
if node == None:
return
if self.node_address[height] == None:
self.node_address[height] = node
else:
self.node_address[height].next = node
self.node_address[height] = node
self.dfs(node.left, height+1)
self.dfs(node.right, height+1)
'Computer Science > Coding Test' 카테고리의 다른 글
프로그래머스: 징검다리 (0) | 2021.11.03 |
---|---|
프로그래머스: 입국심사 (0) | 2021.11.02 |
LeetCode: 114. Flatten Binary Tree to Linked List (0) | 2021.11.02 |
프로그래머스: 여행경로 (0) | 2021.11.01 |
프로그래머스: 단어 변환 (0) | 2021.11.01 |