题解 | #统计回文#

统计回文

https://www.nowcoder.com/practice/9d1559511b3849deaa71b576fa7009dc

统计回文

统计回文

/*
2022年09月10日 11:35:10
遍历str1的位置,挨个插入str2,并判断是否为回文串
注意拷贝一份str1,而不能直接修改str1
*/


#include <iostream>
#include <string>
using namespace std;

bool IsPalindrome(string& s){
    int begin = 0, end = s.size()-1;
    while(begin < end){
        if(s[begin] != s[end])
            return false;
        ++begin, --end;
    }
    return true;
}

int main()
{
    string str1, str2;
    cin >> str1 >> str2;
    // str1的最后也要能够插入
    int count = 0;
    for(int i = 0; i <= str1.size(); ++i)
    {
        string tmp(str1);
        tmp.insert(i, str2);
        if(IsPalindrome(tmp))
            ++count;
    }
    cout << count << endl;
    return 0;
}
/*
2022年09月10日 11:40:42
遍历str1的位置,挨个插入str2,并判断是否为回文串
注意拷贝一份str1,而不能直接修改str1

判断回文也可以翻转之后 直接比较字符串是否相等
*/


#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

bool IsPalindrome(string& s){
    string tmp = s;
    reverse(s.begin(), s.end());
    if(s == tmp)
        return true;
    else
        return false;
}

int main()
{
    string str1, str2;
    cin >> str1 >> str2;
    // str1的最后也要能够插入
    int count = 0;
    for(int i = 0; i <= str1.size(); ++i)
    {
        string tmp(str1);
        tmp.insert(i, str2);
        if(IsPalindrome(tmp))
            ++count;
    }
    cout << count << endl;
    return 0;
}
全部评论

相关推荐

最近和朋友聊天,她说了句让我震惊的话:"我发现我连周末点外卖都开始'最优解'了,一定要赶在高峰期前下单,不然就觉得自己亏了。"这不就是典型的"班味入侵"吗?工作思维已经渗透到生活的方方面面。
小型域名服务器:啊?我一直都这样啊?我还以为是我爱贪小便宜呢?每次去实验室都得接一杯免费的开水回去,出门都得规划一下最短路径,在宿舍就吃南边的食堂,在实验室就吃北边的食堂,快递只有顺路的时候才取。
点赞 评论 收藏
分享
狠赚笔第一人:学计算机自己不努力怪大环境?我大一就拿到了美团大厂的offer,好好看看自己有没有努力查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务