C++如何判断回文字符串

回文字符串的特征是正着读和倒着读都一样,也就意味着把一个回文字符串分成两半,左右都一样。

代码实现

#include
using namespace std;

int main() {

	//Your codes here...
	char c[10001]; 
	printf("输入一个字符串(长度小于10000):"); 
	gets(c);
	int len=strlen(c);
	for(int i=0; inul");
	return 0;
}

你可能感兴趣的:(c++,算法,数据结构)