-
Notifications
You must be signed in to change notification settings - Fork 24
/
P47_3.kt
39 lines (36 loc) · 1.37 KB
/
P47_3.kt
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
32
33
34
35
36
37
38
39
package ch14
import datatype.TreeNode
import java.util.*
class P47_3 {
fun maxDepth(root: TreeNode?): Int {
// 예외 처리
if (root == null)
return 0
// BFS 진행을 위한 큐 선언, 큐는 인터페이스이며 자료형 선언은 LinkedList 사용
val queue: Queue<TreeNode> = LinkedList()
// 먼저 root부터 큐에 삽입
queue.add(root)
// 결과로 리턴할 깊이 변수 선언
var depth = 0
// 큐가 모두 비워질 때까지 반복
while (!queue.isEmpty()) {
// 반복 처리할 때마다 깊이 +1
depth += 1
// 큐 크기 계산, 이 값은 해당 깊이의 모든 노드 수와 일치한다.
val q_size = queue.size
// 해당 깊이에 위치한 모든 노드 수만큼 반복
for (i in 0 until q_size) {
// 가장 먼저 삽입된 노드(가장 왼쪽)부터 추출된다.
val cur = queue.poll()
// 왼쪽 자식 노드가 있다면 큐에 삽입
if (cur.left != null)
queue.add(cur.left)
// 오른쪽 자식 노드가 있다면 큐에 삽입
if (cur.right != null)
queue.add(cur.right)
}
}
// BFS 반복 횟수 == 깊이
return depth
}
}