720. Longest Word in Dictionary

来源:互联网 发布:怎么建数据库 编辑:程序博客网 时间:2024/06/11 08:51

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].

思路:
给定字符串数组,找出包含最长的字符串(包含其他单词的字母),如果存在相同长度,取字母排序小的
对数组排序,再利用Set对字母存储,小的单词一定包含在后面大的单词里面。后面只需要取前缀相同的
对字母排序后,第一个单词一定是共有的,后面只需在此基础上添加
如果单词只有一个字母,那一定是共有的

class Solution {    public String longestWord(String[] words) {        Arrays.sort(words);          HashSet<String> set=new HashSet<String>();          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;      }}
阅读全文
0 0
原创粉丝点击