码迷,mamicode.com
首页 > 其他好文 > 详细

输出最大回文数

时间:2017-05-23 11:23:37      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:length   str   cto   pause   amp   system   pre   highlight   回文数   

#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;
}

重点在于两个循环的判断

  

输出最大回文数

标签:length   str   cto   pause   amp   system   pre   highlight   回文数   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!