-
Notifications
You must be signed in to change notification settings - Fork 24
/
P50_4.java
37 lines (31 loc) · 1.05 KB
/
P50_4.java
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
package ch14;
import datatype.TreeNode;
import java.util.ArrayDeque;
import java.util.Deque;
public class P50_4 {
public TreeNode invertTree(TreeNode root) {
// 예외 처리
if (root == null)
return null;
// 반복 DFS 처리를 위한 스택 선언
Deque<TreeNode> stack = new ArrayDeque<>();
// 스택에 루트부터 삽입
stack.push(root);
// 스택이 모두 비워질 때까지 반복
while (!stack.isEmpty()) {
// 스택에서 노드 추출
TreeNode node = stack.pop();
// 왼쪽/오른쪽 자식 노드 스왑
TreeNode temp = node.left;
node.left = node.right;
node.right = temp;
// 왼쪽 자식노드가 널이 아니면 스택 삽입
if (node.left != null)
stack.push(node.left);
// 오른쪽 자식노드가 널이 아니면 스택 삽입
if (node.right != null)
stack.push(node.right);
}
return root;
}
}