-
Notifications
You must be signed in to change notification settings - Fork 152
/
alien-dictionary-ii.js
131 lines (108 loc) · 2.5 KB
/
alien-dictionary-ii.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* Alien Dictionary II
*
* There is a new alien language which uses the latin alphabet. However, the order among letters are unknown to you.
* You receive a list of non-empty words from the dictionary, where words are sorted lexicographically by the rules
* of this new language. Derive the order of letters in this language.
*
* Example 1:
* Given the following words in dictionary,
*
* [
* "wrt",
* "wrf",
* "er",
* "ett",
* "rftt"
* ]
* The correct order is: "wertf".
*
* Example 2:
* Given the following words in dictionary,
*
* [
* "z",
* "x"
* ]
* The correct order is: "zx".
*
* Example 3:
* Given the following words in dictionary,
*
* [
* "z",
* "x",
* "z"
* ]
* The order is invalid, so return "".
*
* Note:
* You may assume all letters are in lowercase.
* You may assume that if a is a prefix of b, then a must appear before b in the given dictionary.
* If the order is invalid, return an empty string.
* There may be multiple valid order of letters, return any one of them is fine.
*/
/**
* @param {string[]} words
* @return {string}
*/
const alienOrder = words => {
if (!words || words.length === 0) {
return '';
}
if (words.length === 1) {
return words[0];
}
const adjList = new Map();
for (let i = 0; i < words.length - 1; i++) {
const word1 = words[i];
const word2 = words[i + 1];
let found = false;
for (let j = 0; j < Math.max(word1.length, word2.length); j++) {
const c1 = word1[j];
const c2 = word2[j];
if (c1 && !adjList.has(c1)) {
adjList.set(c1, []);
}
if (c2 && !adjList.has(c2)) {
adjList.set(c2, []);
}
if (c1 && c2 && c1 !== c2 && !found) {
adjList.get(c1).push(c2);
found = true;
}
}
}
const visited = new Set();
const stack = new Set();
const result = [];
const hasCycle = u => {
if (visited.has(u)) {
return false;
}
visited.add(u);
stack.add(u);
const neighbors = adjList.get(u);
for (let i = 0; i < neighbors.length; i++) {
const v = neighbors[i];
if (stack.has(v)) {
return true;
}
if (!visited.has(v) && hasCycle(v)) {
return true;
}
}
stack.delete(u);
result.push(u);
return false;
};
const vertices = [...adjList.keys()];
for (let i = 0; i < vertices.length; i++) {
const u = vertices[i];
if (hasCycle(u)) {
return '';
}
}
return result.reverse().join('');
};
export default alienOrder;