-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEsIsomorfico.java
45 lines (34 loc) · 1.25 KB
/
EsIsomorfico.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
import java.util.HashMap;
/*Dado dos strings s y t, determinar si son isomorficos. Dos string son
isomorficos si los caracteres en s pueden ser reemplazados para obtener t
Ejemplo y solucion obtenidos de: https://www.programcreek.com/2014/05/leetcode-isomorphic-strings-java/*/
public class EsIsomorfico {
public static boolean esIsomorfico(String s, String t) {
if(s.length() != t.length()) {
return false;
}
HashMap<Character, Character> frase1 = new HashMap<>();
HashMap<Character, Character> frase2 = new HashMap<>();
for(int i = 0; i < s.length(); i++) {
char c1 = s.charAt(i);
char c2 = t.charAt(i);
if(frase1.containsKey(c1)) {
if(c2 != frase1.get(c1)) {
return false;
}
} else {
if(frase2.containsKey(c2)) {
return false;
}
frase1.put(c1, c2);
frase2.put(c2, c1);
}
}
return true;
}
public static void main(String[] args) {
String t = "Dos";
String s = "Uno";
System.out.println(esIsomorfico(s, t));
}
}