LeetCode 720. Longest Word in Dictionary
原题链接在这里:https://leetcode.com/problems/longest-word-in-dictionary/description/
题目:
Given an array of strings words
representing an English Dictionary, return 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.
Note that the word should be built from left to right with each additional character being added to the end of a previous word.
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".
Constraints:
1 <= words.length <= 1000
1 <= words[i].length <= 30
words[i]
consists of lowercase English letters.
题解:
Sort the words, then with the same prefix, longer words will come after shorter words.
Iterate the words, for current word, if its prefix already exist in the visited set, we can add it to the visited set and update the result.
Time Complexity: O(nlogn + n * len). n = words.length. len is the length of longest length of word.
Space: O(n * len).
AC Java:
1 class Solution { 2 public String longestWord(String[] words) { 3 String res = ""; 4 if(words == null || words.length == 0){ 5 return res; 6 } 7 8 Arrays.sort(words); 9 HashSet<String> visited = new HashSet<>(); 10 for(String w : words){ 11 if(w.length() == 1 || visited.contains(w.substring(0, w.length() - 1))){ 12 visited.add(w); 13 if(w.length() > res.length()){ 14 res = w; 15 } 16 } 17 } 18 19 return res; 20 } 21 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
2019-06-03 LeetCode 1019. Next Greater Node In Linked List
2019-06-03 LeetCode 725. Split Linked List in Parts
2019-06-03 LeetCode 707. Design Linked List