​LeetCode刷题实战524:通过删除字母匹配到字典里最长单词

今天和大家聊的问题叫做 通过删除字母匹配到字典里最长单词,我们先来看题面:https://leetcode-cn.com/problems/longest-word-in-dictionary-through-deleting/

Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the given string characters. If there is more than one possible result, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string


给你一个字符串 s 和一个字符串数组 dictionary ,找出并返回 dictionary 中最长的字符串,该字符串可以通过删除 s 中的某些字符得到。

如果答案不止一个,返回长度最长且字母序最小的字符串。如果答案不存在,则返回空字符串。


示例                         

示例 1:
输入:s = "abpcplea", dictionary = ["ale","apple","monkey","plea"]
输出:"apple"

示例 2:
输入:s = "abpcplea", dictionary = ["a","b","c"]
输出:"a"

解题


思路:通过删除字符串 s 中的一个字符能得到字符串 t,可以认为 t 是 s 的子序列,我们可以使用双指针来判断一个字符串是否为另一个字符串的子序列,也可以使用String类的indexOf方法来验证是否是子序列。

class Solution {
    public String findLongestWord(String s, List<String> d) {
        String max= ""; // 将最长单词初始化为空,没有匹配到的情况下可以直接返回
        for (String word: d) {
            if (word.length()<max.length()) //长度小于最长单词直接跳过
                continue;
            if (word.length()==max.length() && max.compareTo(word)<0) //长度相等,但字典顺序大的也跳过
                continue;
            if (isSubstring(s, word)) //剩下符合条件的单词,若匹配上则更新最长单词
                max= word;
        }
        return max;
    }
    
    /** 匹配长字符串和单词,若单词为长字符串的子序列(即长字符串可通过删除字符变为该单词),则返回true */
    private boolean isSubstring(String str, String word) {
        int len_1= str.length();
        int len_2= word.length();
        int p=0; //单词中用于匹配的字符位置
        for (int i=0; i<len_1; i++) {
            if(str.charAt(i)==word.charAt(p)) {
                if(p==len_2-1) //字符位置已匹配到单词尾,则单词是子序列
                    return true;
                p++; //长字符串和单词中字符相等,则更新单词中下个字符位置
            }
        }
        return false; //单词没有匹配上,不是子序列
    }
}

好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。

上一篇:福利篇:学习编程视频免费领取


下一篇:​LeetCode刷题实战520: 检测大写字母