回文子串 -- C语言

需求

 给定一个字符串,你的任务是计算这个字符串中有多少个回文子串。
 
 具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被计为是不同的子串。
 
 示例 1:
 输入: "abc"
 输出: 3
 解释: 三个回文子串: "a", "b", "c".

 示例 2:
 输入: "aaa"
 输出: 6
 说明: 6个回文子串: "a", "a", "a", "aa", "aa", "aaa".

 注意: 
 输入的字符串长度不会超过1000。

思路

这里是求子串,不是子序列,我们使用中心扩展法

中心有2N-1个,分别是 [i,i] 为中心(单字符中心)和 [i, i+1]为中心(双字符中心)

然后向两边扩展,如果两边相等,则回文子串又多了一个,如果不相等,再扩展;指导扩展到整个字符串范围之外(left >= 0 && right < len)

其实用推演发也可以,但是因为是子串的首和尾,一个是i,一个是 j = j + i; 不好计算,所以序列情况下(直接用j)在考虑推演法

代码实现

/*
 * 需求
 
 给定一个字符串,你的任务是计算这个字符串中有多少个回文子串。
 
 具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被计为是不同的子串。
 
 示例 1:
 输入: "abc"
 输出: 3
 解释: 三个回文子串: "a", "b", "c".

 示例 2:
 输入: "aaa"
 输出: 6
 说明: 6个回文子串: "a", "a", "a", "aa", "aa", "aaa".

 注意: 
 输入的字符串长度不会超过1000。
  
 gcc countSubstrings.c -g -o a.exe -DDEBUG

 */

#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>


#ifdef DEBUG
#define LOG(fmt, args...) fprintf(stdout, fmt, ##args)
#define BREAKER(a, b, c) breaker(a, b, c)
#else
#define LOG(fmt,...)
#define BREAKER(a, b, c)
#endif

#define TRUE        1
#define FALSE       0

#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) > (b) ? (b) : (a))

#define SIZE	1000

int expend(char * s, int left, int right){
	int ret = 0;
	int len = strlen(s);

	/* 注意是 < len, 不是 <=, 因为数组从0开始*/
	while(left >= 0 && right < len && s[left] == s[right]){
		right++;
		left--;
		ret++;
	}

	return ret;	
}

int countSubstrings(char * s){

	int cnt = 0;
	int i = 0;
	int ret1 = 0, ret2 = 0;
	int len = 0;
	
	if(NULL == s){
		goto out;
	}	

	len = strlen(s);
	/*[i,i],[i,i+1]两种中心方式进行扩展*/
	for(i = 0; i < len; i++){ /* 注意是 < len, 不是 <=, 因为数组从0开始*/
		ret1 = expend(s, i, i); 	//(i)作为中心位置向两边扩散
		ret2 = expend(s, i, i + 1);	//(i,i+1)向两边扩散
		cnt = cnt + ret1 + ret2;
	}

out:
	return cnt;
}


void testcountSubstrings(void){
	
	printf("\n************  testcountSubstrings ************ \n");
	char str[100] = "abc";
	char str1[100] = "aaa";
	int n = 0;

	/*testcase 1*/
	n = countSubstrings(str);	
	printf("The Palindrome strings in %s is %d\n", str,n);

	/*testcase 2*/
	n = countSubstrings(str1);	
	printf("The Palindrome strings in %s is %d\n", str1,n);

	return; 
 }

 int main(int argc, char ** argv){
	testcountSubstrings();
 }

代码编译

 gcc countSubstrings.c -g -o a.exe -DDEBUG

 

调试输出

************  testcountSubstrings ************
The Palindrome strings in abc is 3
The Palindrome strings in aaa is 6

 

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值