C++怎么用递归判断回文字符串并且可以忽略空格和标点符号,最好是一个完整的程序,从提示输入句子起
WritearecursivefunctiontestPalindromethatreturnstrueifthestringstoredinthearrayisapal...
Write a recursive function
test Palindrome that returns true if the string stored in the array is a palindrome, and false otherwise. The function shouldignore spaces and punctuation in the string. 展开
test Palindrome that returns true if the string stored in the array is a palindrome, and false otherwise. The function shouldignore spaces and punctuation in the string. 展开
展开全部
#include<iostream>
using namespace std;
char s[100];
int recurs(int i,int j)
{
if(s[i]!=s[j])return 0;
else if(i>j-2)return 1;
else return return(i+1,j-1);
}
void main()
{
int i;
cout<<"输入一个字符串:";
cin>>s;
for(i=0;s[i];i++);
if(recurs(0,i-1))
cout<<"是回文串"<<endl;
else
cout<<"不是回文串"<<endl;
}
using namespace std;
char s[100];
int recurs(int i,int j)
{
if(s[i]!=s[j])return 0;
else if(i>j-2)return 1;
else return return(i+1,j-1);
}
void main()
{
int i;
cout<<"输入一个字符串:";
cin>>s;
for(i=0;s[i];i++);
if(recurs(0,i-1))
cout<<"是回文串"<<endl;
else
cout<<"不是回文串"<<endl;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-01-04
展开全部
sadcv 洒出、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
什么意思?发清楚啊啊啊
追问
下面的是英文版的题目,编写程序:输入一个句子,用递归判断是不是回文字符串,忽略句中的空格和标点符号
追答
好吧我不懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询