1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| /**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if(root.val > p.val && root.val > q.val) {
// root보다 값이 작을 경우
return lowestCommonAncestor(root.left, p, q);
} else if(root.val < p.val && root.val < q.val) {
// root보다 값이 클 경우
return lowestCommonAncestor(root.right, p, q);
} else {
// TreeNode p와 q가 같은 노드에 없다면 root가 부모다
return root;
}
}
}
|