比较两个字符串查找相同的子串

 我来答
梵天鲆韵6W
2013-12-09 · TA获得超过186个赞
知道小有建树答主
回答量:185
采纳率:100%
帮助的人:52.8万
展开全部
#include <stdio.h>
bool isCharInSet(char c, char *set)
{
    return (*set) ? ((c == *set) ? true : isCharInSet(c, set+1)) : false;
}
void main()
{
    char *p0, s0[BUFSIZ] = {0};
    char *p1, s1[BUFSIZ], s2[BUFSIZ];
    printf("Input the 1st string: ");
    scanf_s("%s", s1, BUFSIZ);
    printf("Input the 1st string: ");
    scanf_s("%s", s2, BUFSIZ);
    p0 = s0;
    p1 = s1;
    while (*p1)
    {
        if (isCharInSet(*p1, s2) && !isCharInSet(*p1, s0))
        {
            *p0++ = *p1;
        }
        *p1++;
    }
    printf("The intersection of both strings is %s\n", s0);
    scanf_s("%c", s0);
    getchar();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式