1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_720.java 2.93 KB
一键复制 编辑 原始数据 按行查看 历史
stevesun 提交于 2017-11-06 00:48 +08:00 . [N-0] add 720
package com.fishercoder.solutions;
/**
* 720. Longest Word in Dictionary.
*
* Given a list of strings words representing an English Dictionary,
* find the longest word in words that can be built one character at a time by other words in words.
* If there is more than one possible answer, return the longest word with the smallest lexicographical order.
* If there is no answer, return the empty string.
Example 1:
Input:
words = ["w","wo","wor","worl", "world"]
Output: "world"
Explanation:
The word "world" can be built one character at a time by "w", "wo", "wor", and "worl".
Example 2:
Input:
words = ["a", "banana", "app", "appl", "ap", "apply", "apple"]
Output: "apple"
Explanation:
Both "apply" and "apple" can be built from other words in the dictionary. However, "apple" is lexicographically smaller than "apply".
Note:
All the strings in the input will only contain lowercase letters.
The length of words will be in the range [1, 1000].
The length of words[i] will be in the range [1, 30].
*/
public class _720 {
public static class Solution1 {
public String longestWord(String[] words) {
TrieNode root = buildTrie(words);
return findLongestWord(root, words);
}
private String findLongestWord(TrieNode root, String[] words) {
String longestWord = "";
for (String word : words) {
if (longestWord.length() > word.length() || (longestWord.length() == word.length() && (longestWord.compareToIgnoreCase(word) < 0))) {
continue;
}
TrieNode tmp = root;
boolean validWord = true;
for (char c : word.toCharArray()) {
if (tmp.children[c - 'a'] != null) {
tmp = tmp.children[c - 'a'];
if (!tmp.isWord) {
validWord = false;
break;
}
}
}
if (validWord) {
longestWord = word;
}
}
return longestWord;
}
private TrieNode buildTrie(String[] words) {
TrieNode root = new TrieNode(' ');
for (String word : words) {
TrieNode tmp = root;
for (char c : word.toCharArray()) {
if (tmp.children[c - 'a'] == null) {
tmp.children[c - 'a'] = new TrieNode(c);
}
tmp = tmp.children[c - 'a'];
}
tmp.isWord = true;
}
return root;
}
class TrieNode {
char val;
boolean isWord;
TrieNode[] children;
public TrieNode(char val) {
this.val = val;
this.isWord = false;
this.children = new TrieNode[26];
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助