-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathLongestWord.java
54 lines (50 loc) · 1.69 KB
/
LongestWord.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
package com.leetcode.easy;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/**
*
* 给出一个字符串数组words组成的一本英语词典。从中找出最长的一个单词,该单词是由words词典中其他单词逐步添加一个字母组成。若其中有多个可行的答案,则返回答案中字典序最小的单词。
*
* 若无答案,则返回空字符串。
*
* 示例 1:
*
* 输入:
* words = ["w","wo","wor","worl", "world"]
* 输出: "world"
* 解释:
* 单词"world"可由"w", "wo", "wor", 和 "worl"添加一个字母组成。
*
* 示例 2:
*
* 输入:
* words = ["a", "banana", "app", "appl", "ap", "apply", "apple"]
* 输出: "apple"
* 解释:
* "apply"和"apple"都能由词典中的单词组成。但是"apple"得字典序小于"apply"。
*
* 注意:
*
* 所有输入的字符串都只包含小写字母。
* words数组长度范围为[1,1000]。
* words[i]的长度范围为[1,30]。
*
* */
public class LongestWord {
public String longestWord(String[] words) {
//对数组排序,再利用Set对字母存储,小的单词一定包含在后面大的单词里面。后面只需要取前缀相同的
//对字母排序后,第一个单词一定是共有的,后面只需在此基础上添加
Arrays.sort(words);
Set<String> set = new HashSet<>();
String res = "";
for (String s : words) {
//如果单词只有一个字母,那一定是共有的
if (s.length() == 1 || set.contains(s.substring(0, s.length() - 1))) {
res = s.length() > res.length() ? s : res;
set.add(s);
}
}
return res;
}
}