首页 > 其他 > 详细

输出最大回文数

时间:2017-05-23 11:00:00      阅读:259      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <string>
#include <vector>
#include <stdlib.h>
using namespace std;
int main()
{
	string str;
	//int i=0,j=0;
	while (getline(cin,str))
	{
		int R=1;
		for (int i=1;i<str.length()-1;i++)
		{
//判断aba型回文数
			for(int j=1;(i-j)>=0&&((i+j)<str.length())&&(str[i-j]==str[i+j]);j++)
			{	if((j*2+1)>R)
					R=j*2+1;
			}
//判断abba型回文数
			for(int j=0;(i-j-1)>=0&&((i+j)<str.length())&&(str[i-1-j]==str[i+j]);j++)
				if((j+1)*2>R)
					R=(j+1)*2;
		}
		cout<<R<<endl;
	}
	system("pause");
	return 0;
}

重点在于两个循环的判断

  

输出最大回文数

原文:http://www.cnblogs.com/zhaodun/p/6892952.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!