求给定字符串回文子串个数

# include 
using namespace std;

int dp[50][50];
string str = "abbcbdffd";
//中心法 
int func1(string s)
{
	int n = s.length();
	if(n==0)
		return 0;
	int res = 0;
	for(int i=0; i=0 && i+j=0 && i+j=0; --i)
	{
		for(int j=i;j

你可能感兴趣的:(求给定字符串回文子串个数)