题解 2875: 回文子串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

java--study||O.o--动态规划

摘要:参考代码:import java.util.Scanner; public class Main  { public static void main(String[] args)     ……

2875: 回文子串

摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> us……

回文子串(三层嵌套循环复杂解法)

摘要:解题思路:从2个到整个为一对来对字符串进行检查;注意事项:各变量关系复杂,需花一定时间仔细琢磨;参考代码:一遍过真爽ヽ( ̄▽ ̄)ノ#include<stdio.h> #include<string.……