码迷,mamicode.com
首页 > 其他好文 > 详细

二进制字符串匹配

时间:2016-03-26 15:34:47      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=5

暴力:

#include <stdio.h>
#include <string.h>

char a[15];
char b[1005];
int len1,len2;

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int i,j;
        int Count=0;
        scanf("%s%s",a,b);
        len1=strlen(a);
        len2=strlen(b);
        for(i=0;i<len2-len1+1;i++)
        {
            for(j=0;j<len1;j++)
            {
                if(a[j]!=b[i+j])
                    break;
            }
            if(j==len1)
                Count++;
        }
        printf("%d\n",Count);
    }
    return 0;
}

 

二进制字符串匹配

标签:

原文地址:http://www.cnblogs.com/TreeDream/p/5322823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!