C++编程,判断回文串

题目要求:编写函数intf(char*s),判断s所指的串是否为“回文串”,即前后对称的串,如:“a131a”、“a1bb1a”,若是返回1,否则返回0。求答案详解... 题目要求:编写函数int f(char *s),判断s所指的串是否为“回文串”,即前后对称的串,如:“a131a”、“a1bb1a”,若是返回1,否则返回0。求答案详解 展开
 我来答
White_MouseYBZ
2019-09-30 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6688万
展开全部

代码资料:

//#include "stdafx.h"//If the vc++6.0, with this line.

#include <string>

#include <iostream>

using namespace std;

int main(int argc,char *argv[]){

string s;

int i,j,k;

cout << "k(int k>0)...\n";

if(!(cin >> k) || k<1){

cout << "Input error, exit...\n";

return 0;

}

while(k--){

cout << "Please enter a string(No ' ')...\n";

cin >> s;

if(s.length()>50)

s.assign(s,0,49);

for(j=s.length()-1,i=0;i<j;i++,j--)

if(s[i]-s[j])

break;

cout << (i>=j ? 'Y' : 'N') << endl;

}

return 0;

}

匿名用户
推荐于2017-09-11
展开全部
#include "stdafx.h"
#include <string.h>

int f(char* s)
{
int sz = (int)strlen(s);
for(int i = 0; i < sz/2; i++)
if(s[i] != s[sz-1-i])
return 0;
return 1;
}

int _tmain(int argc, _TCHAR* argv[])
{
char * s = "abcdedcba";
printf("%d", f(s));
return 0;
}
更多追问追答
追问
这是c++吗
追答

这是C++,在Visual Studio 2010下运行成功,如果你不用VC,改成如下即可

#include <string.h>
 
int f(char* s)
{
    int sz = (int)strlen(s);
    for(int i = 0; i < sz/2; i++)
        if(s[i] != s[sz-1-i])
            return 0;
    return 1;
}
 
int main(int argc, char* argv[])
{
    char * s = "abcdedcba";
    printf("%d", f(s));
    return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
leaf_maple
2015-04-27 · TA获得超过1万个赞
知道大有可为答主
回答量:1.9万
采纳率:87%
帮助的人:3268万
展开全部
1、将字符串分为左右2串
2、左串向左遍历,右串向右遍历
3、判断是否相等
int f(char *s)
{
if(strlen(s) & 1)
return false; //odd

int len = strlen(s) /2;
char *sL = s + len - 1;
char *sR = s + len;

for (int i =0; i < len; i++)
{
if(*sL != *sR)
return false;

sL--;
sR++;
}

return true;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
爱说真话的小丑
2015-04-27 · TA获得超过943个赞
知道小有建树答主
回答量:866
采纳率:0%
帮助的人:287万
展开全部
int f(char *s)
{
int l, i, a;
for(l = 0; s[l] == 0; l++){} //计算字符串长度
for(a = 0, i = 0; i <= l / 2; i++)
{
if(s[i] != s[l-1-i])//前后对称比较,有不同的,就不是回文
return 0;
}
return 1;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式