forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cs
35 lines (30 loc) · 927 Bytes
/
Solution.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
public class Solution {
public int[] RestoreArray(int[][] adjacentPairs) {
int n = adjacentPairs.Length + 1;
Dictionary<int, List<int>> g = new Dictionary<int, List<int>>();
foreach (int[] e in adjacentPairs) {
int a = e[0], b = e[1];
if (!g.ContainsKey(a)) {
g[a] = new List<int>();
}
if (!g.ContainsKey(b)) {
g[b] = new List<int>();
}
g[a].Add(b);
g[b].Add(a);
}
int[] ans = new int[n];
foreach (var entry in g) {
if (entry.Value.Count == 1) {
ans[0] = entry.Key;
ans[1] = entry.Value[0];
break;
}
}
for (int i = 2; i < n; ++i) {
List<int> v = g[ans[i - 1]];
ans[i] = v[1] == ans[i - 2] ? v[0] : v[1];
}
return ans;
}
}