forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_737.java
51 lines (44 loc) · 1.56 KB
/
_737.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
public class _737 {
public static class Solution1 {
public boolean areSentencesSimilarTwo(String[] words1, String[] words2, String[][] pairs) {
if (words1.length != words2.length) {
return false;
}
Map<String, String> map = new HashMap<>();
for (String[] pair : pairs) {
if (!map.containsKey(pair[0])) {
map.put(pair[0], pair[0]);
}
if (!map.containsKey(pair[1])) {
map.put(pair[1], pair[1]);
}
setParent(map, pair[0], pair[1]);
}
for (int i = 0; i < words1.length; i++) {
String parent1 = getParent(map, words1[i]);
String parent2 = getParent(map, words2[i]);
if (!parent1.equals(parent2)) {
return false;
}
}
return true;
}
private void setParent(Map<String, String> map, String word1, String word2) {
String parent1 = getParent(map, word1);
String parent2 = getParent(map, word2);
map.put(parent1, parent2);
}
private String getParent(Map<String, String> map, String word) {
if (!map.containsKey(word)) {
return word;
}
while (!word.equals(map.get(word))) {
word = map.get(word);
}
return word;
}
}
}