博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
九度OJ 1094:String Matching(字符串匹配) (计数)
阅读量:4206 次
发布时间:2019-05-26

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

时间限制:1 秒

内存限制:32 兆

特殊判题:

提交:1259

解决:686

题目描述:

    Finding all occurrences of a pattern in a text is a problem that arises frequently in text-editing programs. 

    Typically,the text is a document being edited,and the pattern searched for is a particular word supplied by the user.  
    We assume that the text is an array T[1..n] of length n and that the pattern is an array P[1..m] of length m<=n.We further assume that the elements of P and  T are all alphabets(∑={a,b...,z}).The character arrays P and T are often called strings of characters.  
    We say that pattern P occurs with shift s in the text T if 0<=s<=n and T[s+1..s+m] = P[1..m](that is if T[s+j]=P[j],for 1<=j<=m).  
    If P occurs with shift s in T,then we call s a valid shift;otherwise,we calls a invalid shift. 
    Your task is to calculate the number of vald shifts for the given text T and p attern P.

输入:

   For each case, there are two strings T and P on a line,separated by a single space.You may assume both the length of T and P will not exceed 10^6. 

输出:

    You should output a number on a separate line,which indicates the number of valid shifts for the given text T and pattern P.

样例输入:
abababab abab
样例输出:
3
来源:

思路:

简单的计数题。

代码:

#include 
#include
#define N 1000000 int main(void){ int tlen, plen, i; char t[N+1], p[N+1]; while (scanf("%s%s", t, p) != EOF) { tlen = strlen(t); plen = strlen(p); int count = 0; for(i=0; i<=tlen-plen; i++) { if (t[i] == p[0] && strncmp(t+i, p, plen) == 0) count ++; } printf("%d\n", count); } return 0;}/************************************************************** Problem: 1094 User: liangrx06 Language: C Result: Accepted Time:30 ms Memory:2788 kb****************************************************************/

转载地址:http://bfeli.baihongyu.com/

你可能感兴趣的文章
括号运算符重载
查看>>
为什么不要重载逻辑&&和逻辑||运算符
查看>>
运算符重载之数组实例的应用
查看>>
派生类访问控制
查看>>
类型兼容性原则
查看>>
继承与组合混搭情况下,构造和析构调用原则
查看>>
继承中的同名成员变量处理方法
查看>>
派生类中的static成员
查看>>
多继承的应用
查看>>
虚继承的应用
查看>>
c++中的多态
查看>>
多态的理论基础
查看>>
虚析构函数的作用
查看>>
c++中重写 pk 重载 pk 重定义
查看>>
多态原理探究
查看>>
如何证明vptr指针的存在
查看>>
如何证明vptr指针的存在
查看>>
在父类的构造函数中调用虚函数可以实现多态么?
查看>>
纯虚函数和抽象类
查看>>
用接口解决多继承带来的二义性问题
查看>>