• 通过删除字母匹配到字典里最长单词


    524. 通过删除字母匹配到字典里最长单词

    给你一个字符串 s 和一个字符串数组 dictionary ,找出并返回 dictionary 中最长的字符串,该字符串可以通过删除 s 中的某些字符得到。
    如果答案不止一个,返回长度最长且字母序最小的字符串。如果答案不存在,则返回空字符串。

    示例 1:

    输入:s = “abpcplea”, dictionary = [“ale”,“apple”,“monkey”,“plea”]
    输出:“apple”

    示例 2:

    输入:s = “abpcplea”, dictionary = [“a”,“b”,“c”]
    输出:“a”

    代码(java):

    import java.util.Arrays;
    import java.util.List;
    
    public class longestWord {
    
    	public static void main(String[] args) {
    		// TODO 自动生成的方法存根
    		String s = "abpcplea";
    		String [] q = {"ale","apple","monkey","plea"};
    		List<String> dictionary = Arrays.asList(q) ;
    		
    		String s1 = findLongestWord(s, dictionary);
    		System.out.println(s1);
    	}
    	 public static 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 static 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();
    	 }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    复杂度分析:
    • 时间复杂度:O(d×(m+n)),其中 d表示dictionary 的长度,m 表示 s的长度,n 表示 dictionary 中字符串的平均长度。我们需要遍历dictionary 中的 d 个字符串,每个字符串需要O(n+m) 的时间复杂度来判断该字符串是否为 s 的子序列

    • 空间复杂度:O(1)。

    提示:
    • 1 <= s.length <= 1000
    • 1 <= dictionary.length <= 1000
    • 1 <= dictionary[i].length <= 1000
    • s 和 dictionary[i] 仅由小写英文字母组成

    来源:力扣(LeetCode)

    注:仅供学习参考!

  • 相关阅读:
    CF33b-B. String Problem
    JavaWeb管理系统与技术博客
    打家劫舍 III
    java毕业设计巢院小区疫情管控系统Mybatis+系统+数据库+调试部署
    机器学习西瓜书学习记录-第四章 决策树
    QFile 类【官翻】
    代码审计-4 代码执行漏洞
    Ubuntu GDB 的基本使用-传参调用
    Twincat Scope 使用经验总结
    Telent
  • 原文地址:https://blog.csdn.net/weixin_43412762/article/details/126978264