题解 | #统计回文#

统计回文

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;
}
全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务