Leetcode - Alien Dictionary

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 words from the dictionary, where words are sorted lexicographically by the rules of this new language. Derive the order of letters in this language.

For example,
Given the following words in dictionary,

[
"wrt",
"wrf",
"er",
"ett",
"rftt"
]
The correct order is: "wertf".

Note:
You may assume all letters are in lowercase.
If the order is invalid, return an empty string.
There may be multiple valid order of letters, return any one of them is fine.

[分析]
先由输入构造出一张有向图,图的节点是字符,边指示字符顺序。考察相邻两字符串的每个字符来构造全图。假设当前考察的字符是c1, c2(c1是前面单词某位置的字符,c2是后面单词同位置处的字符),若c1和c2不等,则在图中加入一条c1指向c2的边。
然后进行拓扑排序,并记录拓扑排序依次遍历到的字符,若排序后所得字符和图中节点数一致说明该图无圈,也即给定的字典合法,拓扑排序所得结果即为字典规则。


public class Solution {
public String alienOrder(String[] words) {
if (words == null || words.length == 0)
return "";
if (words.length == 1)
return words[0];
Map<Character, Set<Character>> graph = buildGraph(words);
Map<Character, Integer> indegree = computeIndegree(graph);
StringBuilder order = new StringBuilder();
LinkedList<Character> queue = new LinkedList<Character>();
for (Character c : indegree.keySet()) {
if (indegree.get(c) == 0)
queue.offer(c);
}
while (!queue.isEmpty()) {
char c = queue.poll();
order.append(c);
for (Character adj : graph.get(c)) {
if (indegree.get(adj) - 1 == 0)
queue.offer(adj);
else
indegree.put(adj, indegree.get(adj) - 1);
}
}
return order.length() == indegree.size() ? order.toString() : "";
}
public Map<Character, Set<Character>> buildGraph(String[] words) {
Map<Character, Set<Character>> map = new HashMap<Character, Set<Character>>();
int N = words.length;
for (int i = 1; i < N; i++) {
String word1 = words[i - 1];
String word2 = words[i];
int len1 = word1.length(), len2 = word2.length(), maxLen = Math.max(len1, len2);
boolean found = false;
for (int j = 0; j < maxLen; j++) {
char c1 = j < len1 ? word1.charAt(j) : ' ';
char c2 = j < len2 ? word2.charAt(j) : ' ';
if (c1 != ' ' && !map.containsKey(c1))
map.put(c1, new HashSet<Character>());
if (c2 != ' ' && !map.containsKey(c2))
map.put(c2, new HashSet<Character>());
if (c1 != ' ' && c2 != ' ' && c1 != c2 && !found) {
map.get(c1).add(c2);
found = true;
}
}
}
return map;
}
public Map<Character, Integer> computeIndegree(Map<Character, Set<Character>> graph) {
Map<Character, Integer> indegree = new HashMap<Character, Integer>();
for (Character prev : graph.keySet()) {
if (!indegree.containsKey(prev))
indegree.put(prev, 0);
for (Character succ : graph.get(prev)) {
if (!indegree.containsKey(succ))
indegree.put(succ, 1);
else
indegree.put(succ, indegree.get(succ) + 1);
}
}
return indegree;
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值