美文网首页
Leetcode 精选之双指针(通过删除字母匹配到字典里最长单词

Leetcode 精选之双指针(通过删除字母匹配到字典里最长单词

作者: Kevin_小飞象 | 来源:发表于2020-03-27 10:19 被阅读0次

    题目描述

    给定一个字符串和一个字符串字典,找到字典里面最长的字符串,该字符串可以通过删除给定字符串的某些字符来得到。如果答案不止一个,返回长度最长且字典顺序最小的字符串。如果答案不存在,则返回空字符串。

    示例 1:

    输入:
    s = "abpcplea", d = ["ale","apple","monkey","plea"]
    
    输出: 
    "apple"
    

    示例 2:

    输入:
    s = "abpcplea", d = ["a","b","c"]
    
    输出: 
    "a"
    

    说明:

    所有输入的字符串只包含小写字母。
    字典的大小不会超过 1000。
    所有输入的字符串长度不会超过 1000。

    题目链接:力扣

    解题思路

    通过删除字符串 s 中的一个字符能得到字符串 t,可以认为 t 是 s 的子序列,我们可以使用双指针来判断一个字符串是否为另一个字符串的子序列。

    class Solution {
        public String findLongestWord(String s, List<String> d) {
            String longestWord = "";
            for (String target : d) {
                int l1 = longestWord.length(), l2 = target.length();
                if (l1 > l2 || (l1 == l2 && longestWord.compareTo(target) < 0)) {
                    continue;
                }
                if (isSubstr(s, target)) {
                    longestWord = target;
                }
            }
            return longestWord;
        }
    
        private boolean isSubstr(String s, String target) {
            int i = 0, j = 0;
            while (i < s.length() && j < target.length()) {
                if (s.charAt(i) == target.charAt(j)) {
                    j++;
                }
                i++;
            }
            return j == target.length();
        }
    }
    

    测试结果

    image.png

    相关文章

      网友评论

          本文标题:Leetcode 精选之双指针(通过删除字母匹配到字典里最长单词

          本文链接:https://www.haomeiwen.com/subject/zzokuhtx.html