每日一练 LeetCode:E720. 词典中最长的单词

该博客介绍了一个算法问题,即在给定的英语词典中找到最长的单词,该单词可以通过逐步添加词典中的其他单词的一个字母来形成。示例展示了如何从输入的字符串数组中找出最长且能按顺序组成的单词。代码实现了一个解决方案,通过遍历词典并检查每个单词是否可以由更短的单词逐步构建得到。
摘要由CSDN通过智能技术生成

题目

给出一个字符串数组 words 组成的一本英语词典。返回 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" 

代码

/**
 * 720. 词典中最长的单词
 *
 * @author peove
 * @date 2022-03-17-9:16
 */
public class E720 {

    public String longestWord(String[] words) {

        Map<String, Integer> map = new HashMap<>();
        for (int i = 0; i < words.length; i++) {
            map.put(words[i], i);
        }

        String res = "";
        for (int i = 0; i < words.length; i++) {

            String word = words[i];
            if ((word.length() > res.length() || word.length() == res.length() && word.compareTo(res) < 0) && getSub(word, map)) res = word;
        }
        return res;
    }

    public boolean getSub(String word, Map<String, Integer> map) {
        String s = "";
        for (int i = 0; i < word.length() - 1; i++) {
            s = s.concat(String.valueOf(word.charAt(i)));
            if (map.get(s) == null) return false;
        }
        return true;
    }

    public static void main(String[] args) {

        E720 o = new E720();

        String[] words = {"a", "banana", "app", "appl", "ap", "apply", "apple"}; // apple
        String[] wordsA = {"b","br","bre","brea","break","breakf","breakfa","breakfas","breakfast","l","lu","lun","lunc","lunch","d","di","din","dinn","dinne","dinner"};
        System.out.println(o.longestWord(words));
        System.out.println(o.longestWord(wordsA));
    }
}

附:测试图

在这里插入图片描述

来源

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-word-in-dictionary

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值