1 /* 2 字符串处理:回文串是串联的,一个一个判断 3 */ 4 #include5 #include 6 #include 7 #include 8 #include 9 using namespace std;10 11 const int MAXN = 1e3 + 10;12 const int INF = 0x3f3f3f3f;13 char s[MAXN];14 15 bool check(int x, int y)16 {17 for (int i=x, j=y; i
本文共 424 字,大约阅读时间需要 1 分钟。
1 /* 2 字符串处理:回文串是串联的,一个一个判断 3 */ 4 #include5 #include 6 #include 7 #include 8 #include 9 using namespace std;10 11 const int MAXN = 1e3 + 10;12 const int INF = 0x3f3f3f3f;13 char s[MAXN];14 15 bool check(int x, int y)16 {17 for (int i=x, j=y; i
转载于:https://www.cnblogs.com/Running-Time/p/4534178.html