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 |
Tags
- python priority queue
- LeetCode
- 파이썬알고리즘
- leetcode 풀기
- 릿코드 풀기
- 코틀린기초
- binary search
- python sorted
- 알고리즘풀이
- 알고리즘풀기
- 릿코드 파이썬
- 파이썬릿코드풀기
- python Leetcode
- 파이썬 알고리즘 풀기
- leetcode풀기
- python zip_longest
- 파이썬 프로그래머스
- 릿코드풀이
- 릿코드
- python 릿코드
- 잇츠디모
- 파이썬 알고리즘
- leetcode풀이
- 상가수익률계산기
- 파이썬릿코드
- 릿코드풀기
- 파이썬알고리즘풀기
- python 알고리즘
- python xor
- 파이썬 릿코드
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1315. Sum of Nodes with Even-Valued Grandparent 본문
반응형
1315. Sum of Nodes with Even-Valued Grandparent
https://leetcode.com/problems/sum-of-nodes-with-even-valued-grandparent/
문제)
솔루션1) - stack and tree traversal
이진 트리를 순회합니다.
재귀적 순회 시 부모의 노드를 계속 넘겨줍니다.
부모 노드의 정보는 스택 자료구조에 저장합니다.
재귀 함수를 빠져 나올때는 스택에서 최상단(부모 노드)를 제거합니다.
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def sumEvenGrandparent(self, root: TreeNode) -> int:
stack = []
res = []
def preorder(node, parent):
if node is None:
return
# 부모 노드를 스택에 추가
stack.append(parent)
if len(stack) >= 2:
grand_parent = stack[-2]
if grand_parent and grand_parent.val % 2 == 0:
res.append(node.val)
# 왼쪽 자식 방문
preorder(node.left, node)
# 오른쪽 자식 방문
preorder(node.right, node)
# 최상위 부모 제거
stack.pop()
preorder(root, None)
return sum(res)
솔루션2) -DFS
dfs 탐색을 하면서 부모와 할아버지 노드 정보를 함께 넘겨줍니다.
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def sumEvenGrandparent(self, root: TreeNode) -> int:
res = []
def dfs(node, p, gp):
if node is None:
return
if gp and gp.val % 2 == 0:
res.append(node.val)
dfs(node.left, node, p)
dfs(node.right, node, p)
dfs(root, None, None)
return sum(res)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1313. Decompress Run-Length Encoded List (0) | 2021.11.29 |
---|---|
LeetCode 풀기 - 897. Increasing Order Search Tree (0) | 2021.11.26 |
LeetCode 풀기 - 938. Range Sum of BST (0) | 2021.11.24 |
LeetCode 풀기 - 450. Delete Node in a BST (0) | 2021.11.24 |
LeetCode 풀기 - 1351. Count Negative Numbers in a Sorted Matrix (0) | 2021.11.24 |
Comments