专业网站建设黄冈网站建设

文案密室 2026/09/09 21:37:00

匹配子序列的单词数

问题描述

给定字符串s和一个字符串数组words,返回wordss的子序列的单词数目。

子序列:通过删除s中的一些字符(也可以不删除)而不改变剩余字符相对位置所形成的新字符串。

示例

输入: s = "abcde", words = ["a","bb","acd","ace"] 输出: 3 解释: 有三个单词是s的子序列:"a","acd","ace"。

算法思路

暴力

  • 对每个单词都从头开始在s中匹配
  • 时间复杂度:O(words.length × s.length × avg_word_length)
  • 对于大量重复单词会重复计算

方法

  1. 预处理 + 二分查找:为每个字符预处理其在s中的位置,然后对每个单词使用二分查找
  2. 多指针:为每个单词维护一个指针,同时遍历s
  3. 缓存:使用哈希表缓存已计算的结果,避免重复单词的重复计算

代码实现

方法一:预处理 + 二分查找

importjava.util.*;classSolution{/** * 使用预处理和二分查找判断子序列 * * @param s 源字符串 * @param words 单词数组 * @return 是s的子序列的单词数目 */publicintnumMatchingSubseq(Strings,String[]words){// 1: 预处理 - 为每个字符记录其在s中出现的所有位置List<Integer>[]positions=newList[26];for(inti=0;i<26;i++){positions[i]=newArrayList<>();}for(inti=0;i<s.length();i++){positions[s.charAt(i)-'a'].add(i);}// 2: 使用缓存避免重复计算Map<String,Boolean>cache=newHashMap<>();intcount=0;// 3: 对每个单词判断是否为子序列for(Stringword:words){if(cache.containsKey(word)){if(cache.get(word)){count++;}continue;}booleanisSubseq=isSubsequence(word,positions);cache.put(word,isSubseq);if(isSubseq){count++;}}returncount;}/** * 使用二分查找判断单词是否为子序列 * * @param word 待检查的单词 * @param positions 字符位置预处理数组 * @return true表示是子序列,false表示不是 */privatebooleanisSubsequence(Stringword,List<Integer>[]positions){intprevIndex=-1;// 上一个匹配字符在s中的位置for(charc:word.toCharArray()){List<Integer>charPositions=positions[c-'a'];// 如果字符c在s中不存在,直接返回falseif(charPositions.isEmpty()){returnfalse;}// 二分查找第一个大于prevIndex的位置intleft=0,right=charPositions.size();while(left<right){intmid=left+(right-left)/2;if(charPositions.get(mid)<=prevIndex){left=mid+1;}else{right=mid;}}// 如果没有找到合适的位置if(left==charPositions.size()){returnfalse;}// 更新prevIndex为找到的位置prevIndex=charPositions.get(left);}returntrue;}}

方法二:多指针

importjava.util.*;classSolution{/** * 使用多指针判断子序列 * 为每个单词维护一个指针,同时遍历s */publicintnumMatchingSubseq(Strings,String[]words){// 使用缓存避免重复计算Map<String,Integer>wordCount=newHashMap<>();for(Stringword:words){wordCount.put(word,wordCount.getOrDefault(word,0)+1);}// 为每个唯一单词创建指针Map<String,Integer>pointers=newHashMap<>();for(Stringword:wordCount.keySet()){pointers.put(word,0);}intmatchedCount=0;// 遍历s的每个字符for(charc:s.toCharArray()){// 复制需要更新的单词列表List<String>toRemove=newArrayList<>();// 检查每个单词的当前指针位置for(Stringword:pointers.keySet()){intptr=pointers.get(word);if(ptr<word.length()&&word.charAt(ptr)==c){ptr++;pointers.put(word,ptr);// 如果单词完全匹配if(ptr==word.length()){matchedCount+=wordCount.get(word);toRemove.add(word);}}}// 移除已完全匹配的单词for(Stringword:toRemove){pointers.remove(word);}}returnmatchedCount;}}

方法三:优化二分查找

importjava.util.*;classSolution{/** * 使用Collections.binarySearch优化的二分查找 */publicintnumMatchingSubseq(Strings,String[]words){// 预处理字符位置List<Integer>[]positions=newList[26];for(inti=0;i<26;i++){positions[i]=newArrayList<>();}for(inti=0;i<s.length();i++){positions[s.charAt(i)-'a'].add(i);}Map<String,Boolean>cache=newHashMap<>();intcount=0;for(Stringword:words){if(cache.computeIfAbsent(word,w->isSubsequenceOptimized(w,positions))){count++;}}returncount;}privatebooleanisSubsequenceOptimized(Stringword,List<Integer>[]positions){intprevIndex=-1;for(charc:word.toCharArray()){List<Integer>list=positions[c-'a'];if(list.isEmpty())returnfalse;// 使用Collections.binarySearch找到插入位置intpos=Collections.binarySearch(list,prevIndex+1);if(pos<0){pos=-pos-1;// 转换为插入位置}if(pos>=list.size()){returnfalse;}prevIndex=list.get(pos);}returntrue;}}

方法四:暴力

importjava.util.*;classSolution{/** * 暴力双指针,使用缓存优化 */publicintnumMatchingSubseq(Strings,String[]words){Map<String,Boolean>cache=newHashMap<>();intcount=0;for(Stringword:words){if(cache.computeIfAbsent(word,w->isSubsequenceBrute(s,w))){count++;}}returncount;}privatebooleanisSubsequenceBrute(Strings,Stringword){inti=0,j=0;while(i<s.length()&&j<word.length()){if(s.charAt(i)==word.charAt(j)){j++;}i++;}returnj==word.length();}}

算法分析

  • 时间复杂度

    • 预处理 + 二分查找:O(s.length + (word.length × log(s.length)))
    • 多指针:O(s.length × unique_words_count)
    • 暴力(带缓存):O(s.length × unique_words_count)
  • 空间复杂度

    • 预处理 + 二分查找:O(s.length + unique_words_count)
    • 多指针:O(unique_words_count × avg_word_length)
    • 暴力:O(unique_words_count × avg_word_length)

算法过程

1:s = “abcde”, words = [“a”,“bb”,“acd”,“ace”]

预处理

  • positions[‘a’] = [0]
  • positions[‘b’] = [1]
  • positions[‘c’] = [2]
  • positions[‘d’] = [3]
  • positions[‘e’] = [4]

单词检查

  1. “a”

    • 字符’a’:在positions[0]中找> -1的位置 → 找到0
    • 完全匹配
  2. “bb”

    • 第一个’b’:在positions[1]中找> -1的位置 → 找到1
    • 第二个’b’:在positions[1]中找> 1的位置 → 未找到
  3. “acd”

    • ‘a’:找到位置0,prevIndex=0
    • ‘c’:在positions[2]中找> 0的位置 → 找到2,prevIndex=2
    • ‘d’:在positions[3]中找> 2的位置 → 找到3,prevIndex=3
    • 完全匹配
  4. “ace”

    • ‘a’:找到位置0,prevIndex=0
    • ‘c’:找到位置2,prevIndex=2
    • ‘e’:在positions[4]中找> 2的位置 → 找到4,prevIndex=4
    • 完全匹配

结果:3个单词匹配

测试用例

publicstaticvoidmain(String[]args){Solutionsolution=newSolution();// 测试用例1:标准示例String[]words1={"a","bb","acd","ace"};System.out.println("Test 1: "+solution.numMatchingSubseq("abcde",words1));// 3// 测试用例2:重复单词String[]words2={"a","a","a"};System.out.println("Test 2: "+solution.numMatchingSubseq("abcde",words2));// 3// 测试用例3:空单词String[]words3={""};System.out.println("Test 3: "+solution.numMatchingSubseq("abcde",words3));// 1// 测试用例4:无匹配String[]words4={"bb","cb","bd"};System.out.println("Test 4: "+solution.numMatchingSubseq("abcde",words4));// 0// 测试用例5:完全匹配String[]words5={"abcde"};System.out.println("Test 5: "+solution.numMatchingSubseq("abcde",words5));// 1// 测试用例6:长字符串StringlongS="abcdefghijklmnopqrstuvwxyz";String[]words6={"ace","xyz","aeiou","bcdfg"};System.out.println("Test 6: "+solution.numMatchingSubseq(longS,words6));// 4// 测试用例7:单字符sString[]words7={"a","b","c"};System.out.println("Test 7: "+solution.numMatchingSubseq("a",words7));// 1// 测试用例8:大量重复单词String[]words8=newString[5000];Arrays.fill(words8,"ace");System.out.println("Test 8: "+solution.numMatchingSubseq("abcde",words8));// 5000// 测试用例9:边界情况String[]words9={"a","z"};System.out.println("Test 9: "+solution.numMatchingSubseq("a",words9));// 1// 测试用例10:空sString[]words10={"a",""};System.out.println("Test 10: "+solution.numMatchingSubseq("",words10));// 1 (只有空字符串匹配)}

关键点

  1. 缓存

    • words数组可能包含大量重复单词
    • 缓存可以将时间复杂度从 O(total_words) 降低到 O(unique_words)
  2. 二分查找

    • 预处理每个字符的位置,避免重复遍历s
    • 对于长s和短单词,效率提升
  3. 子序列

    • 不需要连续,必须保持相对顺序
    • 空字符串是任何字符串的子序列
  4. 字符位置

    • 使用 ArrayList 存储每个字符的所有位置
    • 位置天然有序,适合二分查找
  5. 边界情况处理

    • 空字符串、单字符、重复字符等特殊情况
    • 字符在s中不存在的情况

常见问题

  1. 为什么需要缓存?

    • words可能包含重复单词
    • 不缓存会导致重复计算,效率低下
  2. 二分查找?

    • 找第一个大于prevIndex的位置
    • 确保字符的相对顺序正确
版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈,一经查实,立即删除!

网站建设步骤甘肃省建设厅网站

3款高效LCD字模工具:从入门到精通的完整解决方案【免费下载链接】三种取字模软件介绍本开源项目提供三种高效实用的取字模软件:Img2Lcd、PCtoLCD2002和字模提取

2026/06/30 10:12:18

建设银行网站浙江网站建设

DBeaver插件终极指南:如何精选并高效集成第三方扩展?【免费下载链接】dbeaver项目地址: https://gitcode.com/gh_mirrors/dbe/d

2026/06/30 11:20:55

永康网站建设孝感网站建设

EmotiVoice在冥想引导音频中的舒缓语气呈现在快节奏的现代生活中,越来越多的人开始通过冥想缓解焦虑、提升专注力。而一段真正有效的冥想引导音频,往往不在于说了什么&#x

2026/06/30 10:21:49

诸城网站建设衡阳网站建设

2026必备10个降AIGC工具,本科生必看!AI降重工具:论文写作的“隐形助手”随着人工智能技术的飞速发展,AIGC(AI生成内

2026/06/30 11:30:26

网站建设服务网站建设客户

简介LangSmith已成为事实上的Agent操作系统,通过可视化调试、自动化评估和数据闭环三位一体能力,将AI Agent从"黑盒"转变为"白盒&

2026/06/30 12:44:03

宁波网站建设网站建设方案书

大模型推理安全加固:TensorRT运行时隔离实践在大模型服务加速落地的今天,一个看似矛盾的需求正变得越来越迫切——既要极致性能,又要绝对安全。当千亿参数的语

2026/06/30 10:03:18

南京网站建设泰州网站建设

在 VMware 中使用 Linux 虚拟机操作系统的全面指南1. Linux 概述Linux 是 x86 架构上最受欢迎的类 Unix 操作系统。它最初是 Linus Torvalds 开发的小型内

2026/06/30 10:24:50

济宁网站建设网站建设案例

在Miniconda中安装cudatoolkit实现PyTorch CUDA支持你有没有遇到过这样的情况:刚在服务器上跑通了一个模型,换一台机器却因为CUDA版本不匹配直接

2026/06/30 13:27:05

淮安网站建设莱芜网站建设

基于能量分配的光伏混合储能系统仿真模型 ①光伏:采用mppt控制实现最大功率跟踪 ②蓄电池与超级电容:构成混合储能系统,电池实现连续功率供应,超

2026/06/30 13:00:04