首页 > 代码库 > 原串与其逆序串 对应位置且 连续最大长度
原串与其逆序串 对应位置且 连续最大长度
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <algorithm>using namespace std;int main(){ char s[1000]; char t[1000]; int len; int i, j; memset(s, ‘\0‘, sizeof(s)); memset(t, ‘\0‘, sizeof(t)); while(gets(s)!=NULL ) { len = strlen(s); for( i=0; i<len; i++) { t[len-i-1] = s[i] ; } // puts(s); // puts(t); int max=0; int cnt=0; for(i=0; i<len; ) { if( s[i]==t[i] ) { j=i; while( s[j]==t[j] && j<len ) { cnt++; j++; } if(cnt>max) { max = cnt; //max的值进行更新 cnt=0; } i = j ; } else { i++; } } printf("%d\n", len-max ); } return 0;}
原串与其逆序串 对应位置且 连续最大长度
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。