269. Alien Dictionary

时间:2023-02-27 16:23:11

题目:

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, wherewords 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:

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

链接: http://leetcode.com/problems/alien-dictionary/

题解:

这道题也是卡了很久,原因在于题意理解不明确。方法还是Topological Sorting,这题的意思是 - Words are sorted, 跟每个Word里面的letter顺序并没有什么关系。就比如"apple"排在"banana"前面,但并不是"apple"里面的"a"就排在"p"前面。所以之前花了不少时间根据每个单词内部的顺序构造edges,结果都是错的。 这种东西归根结底还是我自己的英语不好。写了一大堆总是通不过,发现题目真正含义以后就好很多了,以后面试的话也要多交流多沟通,免得题意弄不清楚白浪费时间做题。另外,对于图来说,图的三种表达方式, list of edges, ajacency matrix和ajacency lists一定要搞清楚,多弄明白。

Kahn's Algorithm: 先把输入words转化为Adjacency Lists或者list of edges,然后使用Course Schedule II的方法进行Topological Sorting。这里我们使用Kahn's Algorithm,先计算inDegree,然后维护一个Queue来进行BFS。

Time Complexity - O(VE),Space Complexity - O(VE)

public class Solution {
public String alienOrder(String[] words) { // Topological sorting - Kahn's Algorithm
if(words == null || words.length == 0) {
return "";
} Map<Character, HashSet<Character>> map = new HashMap<>();
Map<Character, Integer> inDegree = new HashMap<>(); for(String s : words) {
for(int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
inDegree.put(c, 0);
}
} for(int i = 1; i < words.length; i++) { // find (prevChar, curChar) pairs as edges
String prevStr = words[i - 1];
String curStr = words[i];
int len = Math.min(prevStr.length(), curStr.length());
for(int j = 0; j < len; j++) {
char curChar = curStr.charAt(j);
char prevChar = prevStr.charAt(j);
if(curChar == prevChar) {
continue;
} else { // find edges;
if(map.containsKey(prevChar)) {
if(!map.get(prevChar).contains(curChar)) {
map.get(prevChar).add(curChar);
inDegree.put(curChar, inDegree.get(curChar) + 1);
}
} else {
HashSet<Character> tmpSet = new HashSet<>();
tmpSet.add(curChar);
map.put(prevChar, tmpSet);
inDegree.put(curChar, inDegree.get(curChar) + 1);
}
break;
}
}
} Queue<Character> queue = new LinkedList<>();
for(char c : inDegree.keySet()) {
if(inDegree.get(c) == 0) {
queue.offer(c);
}
} StringBuilder res = new StringBuilder();
while(!queue.isEmpty()) {
char c = queue.poll();
res.append(c);
if(map.containsKey(c)) {
for(char l : map.get(c)) {
inDegree.put(l, inDegree.get(l) - 1);
if(inDegree.get(l) == 0) {
queue.offer(l);
}
}
}
} if(res.length() != inDegree.size()) {
return "";
} return res.toString();
}
}

题外话:

这几天食物过于丰富。周五BCD豆腐,周六刘一手火锅(改名了),周日又去了法拉盛吃老周全羊馆,结果就懈怠了。不过和小伙伴们玩玩三国杀放松一下也是很好的。房子的装修也接近尾声,明天周一估计就可以收工了,希望一切顺利。 同时,明天也开始为期一周的培训,主要是Modern Web Development,讲JavaScript的。同时Coursera也有一门讲AngularJS的课程,香港科技大学开设的,明天开始第一天。要趁这个机会好好学一些AngularJS。

二刷:

简化了一下。思路不那么乱了。有几个特殊的点要注意:

  1. 输入中只含有26个小写字母,所以我们可以可以用一个int[26]来计算inDegree
  2. 输出的时候只输出在words里出现过的字符,所以先把字符保存在一个set里。 其实这里也可以和map一起遍历,但需要不少额外的边界条件
  3. 注意单词内部的顺序没有关系,只有单词和前一个单词相同位置不同字间才有先后顺序。
  4. 要注意图的adjancency lists表示结构, 使用Map<Character, Set<Character>>可能会比 Map<Character, List<Character>>快。同时要注意这道题里key保存的是先输出的字符,value里面保存的是后输出的字符。inDegree里也是后输出字符的value被增加
  5. 结尾的时候假如sb.length() < set.size(),说明无法组成一个topological order,我们返回"",否则返回一个topological sorted string   sb.toString();

Java:

public class Solution {
public String alienOrder(String[] words) { // Topological sorting - Kahn's Algorithm
if(words == null || words.length == 0) {
return "";
}
Map<Character, Set<Character>> graph = new HashMap<>();
Set<Character> set = new HashSet<>();
for (String word : words) {
for (int i = 0; i < word.length(); i++) {
set.add(word.charAt(i));
}
} int[] inDegree = new int[26];
for (int k = 1; k < words.length; k++) {
String preStr = words[k - 1];
String curStr = words[k];
for (int i = 0; i < Math.min(preStr.length(), curStr.length()); i++) {
char preChar = preStr.charAt(i);
char curChar = curStr.charAt(i);
if (preChar != curChar) {
if (!graph.containsKey(preChar)) {
graph.put(preChar, new HashSet<Character>());
}
if (!graph.get(preChar).contains(curChar)) {
inDegree[curChar - 'a']++;
}
graph.get(preChar).add(curChar);
break;
}
}
}
Queue<Character> queue = new LinkedList<>();
for (int i = 0; i < inDegree.length; i++) {
if (inDegree[i] == 0) {
char c = (char)('a' + i);
if (set.contains(c)) {
queue.offer(c);
}
}
}
StringBuilder sb = new StringBuilder();
while (!queue.isEmpty()) {
char c = queue.poll();
sb.append(c);
if (graph.containsKey(c)) {
for (char l : graph.get(c)) {
inDegree[l - 'a']--;
if (inDegree[l - 'a'] == 0) {
queue.offer(l);
}
}
}
}
return sb.length() != set.size() ? "" : sb.toString();
}
}

Reference:

https://leetcode.com/discuss/53997/the-description-is-wrong

https://leetcode.com/discuss/71991/8ms-clean-java-using-topological-sort-and-dfs

https://leetcode.com/discuss/65274/java-solution-basic-topological-sort

https://leetcode.com/discuss/69894/fastest-java-solution-topological-comments-improvements

https://leetcode.com/discuss/54002/simple-idea-based-on-dfs-4ms-in-c

https://leetcode.com/discuss/54549/java-toposort-solution-clean

https://leetcode.com/discuss/54188/16-18-lines-python-29-lines-c

269. Alien Dictionary的更多相关文章

  1. &lbrack;LeetCode&rsqb; 269&period; Alien Dictionary 另类字典

    There is a new alien language which uses the latin alphabet. However, the order among letters are un ...

  2. 269&period; Alien Dictionary 另类字典 &ast;HARD&ast;

    There is a new alien language which uses the latin alphabet. However, the order among letters are un ...

  3. &lbrack;leetcode&rsqb;269&period; Alien Dictionary外星字典

    There is a new alien language which uses the latin alphabet. However, the order among letters are un ...

  4. 269&period; Alien Dictionary火星语字典(拓扑排序)

    [抄题]: There is a new alien language which uses the latin alphabet. However, the order among letters ...

  5. &lbrack;LeetCode&rsqb; 269&period; Alien Dictionary 外文字典

    There is a new alien language which uses the latin alphabet. However, the order among letters are un ...

  6. LeetCode 269&period; Alien Dictionary

    原题链接在这里:https://leetcode.com/problems/alien-dictionary/ 题目: There is a new alien language which uses ...

  7. &lbrack;Locked&rsqb; Alien Dictionary

    Alien Dictionary There is a new alien language which uses the latin alphabet. However, the order amo ...

  8. 【Leetcode&lowbar;easy】953&period; Verifying an Alien Dictionary

    problem 953. Verifying an Alien Dictionary solution: class Solution { public: bool isAlienSorted(vec ...

  9. Verifying an Alien Dictionary

    2019-11-24 22:11:30 953. Verifying an Alien Dictionary 问题描述: 问题求解: 这种问题有一种解法是建立新的排序和abc排序的映射,将这里的str ...

随机推荐

  1. Linux – Usermod命令参数解析和实例说明

    usermod 命令修改系统帐户文件来反映通过命令行指定的变化 1. 首先看看usermod都是有哪些参数 [root@hxweb101 ~]$ usermod --help Usage: userm ...

  2. Java使用正则表达式解析LRC歌词文件

    LRC歌词是一种应用广泛的歌词文件,各主流播放器都支持. lrc歌词文本中含有两类标签: 1.标识标签(ID-tags) [ar:艺人名] [ti:曲名] [al:专辑名] [by:编者(指编辑LRC ...

  3. adobe form

    Call Adobe Form through ABAP Program 2015-04-24      0个评论    来源:ChampaignWolf的专栏   收藏    我要投稿 Scenar ...

  4. 数码管问题(c&plus;&plus;实现)

    描述:液晶数码管用七笔阿拉数字表示的十个数字,把横和竖的一 个短划都称为一笔,即7有3笔,8有7笔等.对于十个数字一种排列,要做到 两相邻数字都可以由另一个数字加上几笔或减去几笔组成,但不能又加又减. ...

  5. Mybatis分页和Spring的集成

    写了一个Mybatis分页控件,在这记录一下使用方式. 在Maven中加入依赖: ? 1 2 3 4 5 6 7 8 9 <dependencies>   ...     <depe ...

  6. Helpers&bsol;Tags

    Helpers\Tags The tags helper is a collection of useful methods: Tags::clean($data) Clean function to ...

  7. box-shadow 与 filter&colon;drop-shadow 详解及奇技淫巧

    box-shadow 在前端的 CSS 编写工作想必十分常见.但是 box-shadow 除去它的常规用法,其实还存在许多不为人知的奇技淫巧. 喜欢 markdown 版本的可以戳这里. box-sh ...

  8. EF实体框架-从数据库更新模型 一部分表的外键(导航属性)无法显示

    从数据库更新模型 要想让数据库表之间的外键关系 显示到实体模型的导航属性中去. 表的外键 对应另一张表的字段要是主键,唯一键显示不出来

  9. redis 持久化与备份策略 【转载】

    本文转载自 http://blog.csdn.net/is_zhoufeng/article/details/10210353 持久化(persistence) 本文是 Redis 持久化文档 的中文 ...

  10. 记一次SQL调优&sol;优化(SQL tuning)——性能大幅提升千倍以上

    好久不写东西了,一直忙于各种杂事儿,恰巧昨天有个用户研发问到我一个SQL调优的问题,说性能太差,希望我能给调优下,最近有些懒,可能和最近太忙有关系,本来打算问问现在的情况,如果差不多就不调了,那哥们儿 ...