问题:求两个字符串的最长公共子串。 要求:输入两个字符串,输出它们的最长公共子串,包括长度。 设计: 设计一个类 String,包括一个 len(字符串长度)和字符串指针 s。另有如下成员函数: ·

#include <stdio.h>
#include<stdlib.h>
#include<string.h>
/*
问题:求两个字符串的最长公共子串。
要求:输入两个字符串,输出它们的最长公共子串,包括长度。
设计:
设计一个类 String,包括一个 len(字符串长度)和字符串指针 s。另有如下成员函数:
· void getstring() 从用户获取一个字符串。
· void display() 输出字符串。
· friend String maxsubstring(String str1,String str2) 友元函数,求两个字符串的最长
公共子串
*/
int main()
{
char *s1 = "woaibeijingtiananmen";
char *s2 = "welcometobeijing";
int count=0;
int count_temp=0;
char *addr=NULL; 
int i = 0;
for (char *pc1 = s1; *pc1 != '\0'; pc1++)
{
for (char *pc2 = s2; *pc2 != '\0'; pc2++)
{
char *temp1 = pc1;
char *temp2 = pc2;
while ((*temp1 == *temp2) && (*temp2 != '\0'))
   {
    temp1++;
    temp2++;
count_temp++;
}
if(count_temp>=count)///保留地址
{
addr=pc1;
count=count_temp;
}
count_temp=0;
}
}
printf("字符串子串最大长度:%d\n", count);
printf("该子串为:");
while (i < count)
{
 printf("%c", addr[i]);
 i++;
}
printf("\n");
system("pause");
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值