显示的分奇数和偶数 //奇数 int odd( string A,int n, int Left, int Right ) { while( Left>=0 && Right<n && A[Left]==A[Right] ) { --Left; ++Right; } return Right-Left-1; } //偶数 int even( string A,int n, int Left, int Right ) { while( Left>=0 &&...