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

poj 1580 String Matching 【字符串处理】

时间:2014-08-22 16:18:39      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:水题

/*题意:移动字符串一与另外的一个字符串匹配,找最多的匹配个数
策略  暴力  就是将一个字符串固定,然后用另一个字符串从左往右来跟这一字符串来比较*/
#include <stdio.h>
#include <string.h>
#define M 10000
char a[M], b[M];
int gcd(int a, int b)
{
	if(b == 0) return a;
	else return gcd(b, a%b);
}
int main()
{
	while(scanf("%s", a) != EOF){
		if(strcmp("-1", a) == 0) break;
		scanf("%s", b);
		int la = strlen(a);
		int lb = strlen(b);
		int max = 0;
		for(int i = 0; i < la; i ++){  //将第二个字符串固定,然后移动第一个字符串
			int temp = 0;
			for(int j = 0, k = i; j < lb&&k< la; j++, k++){
				if(a[k] == b[j]){
					++temp;
				}
			}
			if(max < temp) max = temp;
		}
		for(int i = 0; i < lb; i ++){  <span style="font-family: Arial, Helvetica, sans-serif;">//将第一个字符串固定,然后移动第二个字符串</span>
			int temp = 0;
			for(int j = 0, k = i; j < la&&k<lb; j++, k++){
				if(a[j] == b[k]){
					++temp;
				}
			}
			if(max < temp) max = temp;
		}
		//printf("%d\n", max);
		max*=2;
		printf("appx(%s,%s) = ", a, b);
		if(max == 0) {
			printf("0\n");
			continue;
		}
		if(max == la+lb){
			printf("1\n");
			continue;
		}
		int temp = gcd(la+lb, max);
		//printf("%d\n", temp);
		printf("%d/%d\n", max/temp, (la+lb)/temp);
	}
}
题目链接http://poj.org/problem?id=1580

poj 1580 String Matching 【字符串处理】

标签:水题

原文地址:http://blog.csdn.net/shengweisong/article/details/38757959

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