-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo_235.cs
102 lines (90 loc) · 2.93 KB
/
No_235.cs
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System.Timers;
namespace LeetCode
{
public class No_235
{
public TreeNode LowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q)
{
Stack<TreeNode> next = new Stack<TreeNode>();
next.Push(root);
Stack<TreeNode> lowers = new Stack<TreeNode>();
List<TreeNode> visited = new List<TreeNode>();
bool h1 = false;
while (next.Count != 0)
{
TreeNode cur = next.Peek();
// if (lowers.Count != 0 && lowers.Peek() == cur)
// {
// lowers.Pop();
// next.Pop();
// }
// else
if (visited.Remove(cur))
next.Pop();
else
{
if (!h1)
lowers.Push(cur);
else
visited.Add(cur);
if (cur == p || cur == q)
{
if (h1) return lowers.Pop();
h1 = true;
}
if (cur.left == null && cur.right == null)
{
next.Pop();
if (lowers.Count != 0 && lowers.Peek() == cur)
lowers.Pop();
}
else
{
if (cur.right != null)
next.Push(cur.right);
if (cur.left != null)
next.Push(cur.left);
}
}
}
return lowers.Pop();
}
public TreeNode LowestCommonAncestor1(TreeNode root, TreeNode p, TreeNode q)
{
TreeNode lower = root;
Stack<TreeNode> next = new Stack<TreeNode>();
next.Push(root);
Stack<TreeNode> lowers = new Stack<TreeNode>();
List<TreeNode> visited = new List<TreeNode>();
bool h1 = false;
while (next.Count != 0)
{
TreeNode cur = next.Pop();
if (visited.Remove(cur))
{
lower = lowers.Pop();
}
else
{
if (!h1)
{
lowers.Push(lower);
lower = cur;
}
if (cur == p || cur == q)
{
if (h1) return lower;
h1 = true;
}
next.Push(cur);
if (cur.right != null)
next.Push(cur.right);
if (cur.left != null)
next.Push(cur.left);
visited.Add(cur);
}
}
return lower;
}
}
}