forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_953.java
75 lines (70 loc) · 2.52 KB
/
_953.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
/**
* 953. Verifying an Alien Dictionary
*
* In an alien language, surprisingly they also use english lowercase letters, but possibly in a different order. The order of the alphabet is some permutation of lowercase letters.
*
* Given a sequence of words written in the alien language, and the order of the alphabet, return true if and only if the given words are sorted lexicographicaly in this alien language.
*
* Example 1:
*
* Input: words = ["hello","leetcode"], order = "hlabcdefgijkmnopqrstuvwxyz"
* Output: true
* Explanation: As 'h' comes before 'l' in this language, then the sequence is sorted.
*
* Example 2:
*
* Input: words = ["word","world","row"], order = "worldabcefghijkmnpqstuvxyz"
* Output: false
* Explanation: As 'd' comes after 'l' in this language, then words[0] > words[1], hence the sequence is unsorted.
*
* Example 3:
*
* Input: words = ["apple","app"], order = "abcdefghijklmnopqrstuvwxyz"
* Output: false
* Explanation: The first three characters "app" match, and the second string is shorter (in size.) According to lexicographical rules "apple" > "app", because 'l' > '∅', where '∅' is defined as the blank character which is less than any other character (More info).
*
*
* Note:
* 1 <= words.length <= 100
* 1 <= words[i].length <= 20
* order.length == 26
* All characters in words[i] and order are english lowercase letters.
*/
public class _953 {
public static class Solution1 {
public boolean isAlienSorted(String[] words, String order) {
if (words.length == 1) {
return true;
}
Map<Character, Integer> map = new HashMap<>();
for (int i = 0; i < order.length(); i++) {
map.put(order.charAt(i), i);
}
for (int i = 0; i < words.length - 1; i++) {
String firstWord = words[i];
String secondWord = words[i + 1];
if (!sorted(firstWord, secondWord, map)) {
return false;
}
}
return true;
}
private boolean sorted(String firstWord, String secondWord, Map<Character, Integer> map) {
for (int i = 0; i < Math.min(firstWord.length(), secondWord.length()); i++) {
if (firstWord.charAt(i) == secondWord.charAt(i)) {
continue;
} else {
if (map.get(firstWord.charAt(i)) > map.get(secondWord.charAt(i))) {
return false;
} else {
return true;
}
}
}
return firstWord.length() <= secondWord.length();
}
}
}