博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串匹配
阅读量:5322 次
发布时间:2019-06-14

本文共 475 字,大约阅读时间需要 1 分钟。

朴素的模式匹配算法

import java.util.*;public class showMain{    public static void main(String[] args){        Scanner scan=new Scanner(System.in);        String str1=scan.nextLine();        String str2=scan.nextLine();               ArrayList list=new ArrayList();        int len1=str1.length();        int len2=str2.length();        String temp=new String();        for(int i=0;i

Console:

  • 输入goolegoolegggoole
goole
  • 输出0

                   5

                   12

 

转载于:https://www.cnblogs.com/xiaoxiaohui2015/p/5840394.html

你可能感兴趣的文章
构建自己的项目管理方案
查看>>
利用pca分析fmri的生理噪声
查看>>
div水平居中且垂直居中
查看>>
epoll使用具体解释(精髓)
查看>>
AndroidArchitecture
查看>>
安装Endnote X6,但Word插件显示的总是Endnote Web"解决办法
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>
sqlserver 各种判断是否存在(表名、函数、存储过程等)
查看>>
给C#学习者的建议 - CLR Via C# 读后感
查看>>
Recover Binary Search Tree
查看>>
Java 实践:生产者与消费者
查看>>