티스토리 뷰
간단하게 이진 트리를 탐색하는 문제입니다.
가장 깊은 위치에 존재하는 리프노드들의 value 총합을 구해야 합니다. 이를위해 아래와 같은 2가지 과정이 필요하다는 것을 쉽게 파악할 수 있습니다.
1. 가장 깊은 노드가 위치한 깊이가 몇인지?? 이를 maxDepth라고 해봅시다.
2. maxDepth를 알았으니, 해당 깊이에 존재한 노드를 찾아 value의 총합을 구해줍니다.
따라서 DFS 두번으로 해결할 수 있고, 깊이를 구하는 깊이 탐색과, 특정 깊이에 들어있는 노드의 총합을 구하는 깊이 탐색을 수행해줍시다.
import kotlin.math.max
class Solution {
fun deepestLeavesSum(root: TreeNode?): Int {
val maxi : Int = getMaxDepth(root)
return dfs(root, maxi, 1)
}
fun dfs(node : TreeNode?, depth : Int, curr : Int) : Int {
if(node == null) return 0
if (isEqual(depth, curr)) {
return getValue(node)
}
return dfs(node!!.left, depth, curr+1) + dfs(node!!.right, depth, curr+1)
}
fun getMaxDepth(node : TreeNode?) : Int {
if(node == null) return 0
return max(
getMaxDepth(node!!.left) + 1,
getMaxDepth(node!!.right) + 1
)
}
fun getValue(node : TreeNode) : Int = node.`val`
fun isEqual(a : Int, b : Int) : Boolean = (a == b)
}
'PS > LeetCode' 카테고리의 다른 글
[Kotlin] LeetCode 2079 : Watering Plants (0) | 2022.12.03 |
---|---|
[Kotlin] LeetCode 2130 : maximum-twin-sum-of-a-linked-list (0) | 2022.11.30 |
[Kotlin] LeetCode 1588 : Sum of All Odd Length Subarrays (0) | 2022.11.27 |
[Kotlin] LeetCode 1512 : Number of Good Pairs (0) | 2022.11.27 |
[Kotlin] LeetCode 009 : Palindrome Number (2) | 2022.11.27 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 공지
- Database
- Operating System
- algorithm
- network
- java
- soft delete
- Effective Java
- go
- spring
- cs
- effective
- OS
- GORM
- ARP
- fiber
- mmu
- paging
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함