判断字符串是否为回文

Description

输入一个字符串,输出该字符串是否回文。回文是指顺读和倒读都一样的字符串。

Input

输入一行字符串,长度小于 100100。

Output

如果字符串是回文,输出 yes;否则,输出 no

Sample 1

Inputcopy Outputcopy
abcdedcba
yes
#include
using namespace std;
int main()
{
    int count = 0;
    string s;
    cin >> s;

    for(int i=0,j=s.length()-1;i < s.length();i++,j--)
    {
        char* a = &s[i];
        char* b = &s[j];
        if(*a == *b)
        {
            count++;
        }
        else
        {
            count--;
        }
    }
    if(count == s.length())
    {
        cout << "yes";
    }
    else
    {
        cout << "no";
    }
    return 0;
}

要注意if判断时是用==而不是=; 要比较*a和*b是否相等,a和b是地址。

你可能感兴趣的:(蓝桥杯,算法,c++,蓝桥杯)