我目前有一个程序来检测输入的字符串是否是回文。我想避免使用 strlen 方法。
int main ()
{
char string[80];
bool Beginning;
Beginning = true;
while (Beginning)
{
cout << "\nEnter a string\n" << endl;
cin.getline(string, 80);
cout << "\nYou entered: ";
printf(string, 80);
cout << endl;
if('E' == string[0])
{
if('N' == string [1])
{
if('D' == string[2])
break;
}
}
int len=strlen(string); //avoid this method
bool flag = true;
for (int c=0; string[c]; c++)
{
if (flag)
{
if(string[c] != string[len-c-1])
{
flag = false;
}
}
else
{
break;
}
}
if (flag)
{
printf ("\nThis is a Palindrome\n");
Beginning = true;
continue;
}
else
{
printf("\nThis is not a palindrome\n");
Beginning = true;
continue;
}
cin.get();
}
}
我尝试使用以下方法手动计数:
while (string[c] < '\0') {
c++;
int len = string[c];
}
以上内容破坏了程序准确确定字符串是否为回文的能力,它会说它们都不是,或者都是。