标题:关于字符串的问题
取消只看楼主
我爱编程
Rank: 1
等 级:新手上路
帖 子:20
专家分:0
注 册:2005-2-28
 问题点数:0 回复次数:0 
关于字符串的问题

找出两个字符串的最大公串!例如,“adbccadebbca”和“edabccadece”,返回“ccade”
我的运行结果不对,找不到错误,请大家帮助一下.
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char a[20];
char b[20];
cout<<"please enter string1:"<<endl;
cin>>a;
cout<<"please enter string2:"<<endl;
cin>>b;
int size1=strlen(a);
int size2=strlen(b);
int size=size1>size2?size2:size1;
char *newstring=new char(size+1);
for(int i=0;i<size1;i++)
{
for(int j=0;j<size2;j++)
{
if(a[j]==b[i])
{
int count=0;
while(a[j]!=b[i])
{
j++;
i++;
count++;
}
int max=0;
if(count>max)
{
max=count;
strncpy(newstring,a+j,max);
}
count=0;
}
}
}
cout<<newstring<<endl;
return 0;
}

搜索更多相关主题的帖子: 字符 int please strlen 
2006-08-21 21:01



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-85344-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.240909 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved