Manacher算法C语言实现

Manacher算法是一种高效的解决方法,用于在给定字符串中找到最长的回文子串,其时间复杂度为线性。本文将详细阐述如何用C语言来实现这一算法。
摘要由CSDN通过智能技术生成

Manacher算法用来查找字符串中最大回文子串的长度,具有O(N)的时间复杂度。

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

void Manacher(char* a, int* P)
{
    int size = strlen(a);
    P[0] = 1;
    int id = 0;
    int mx = 1;
    for(int i=1; i<size; i++)
    {
        if(mx>i)
            P[i] = P[2*id-i]<mx-i?P[2*id-i]:mx-i;
        else
            P[i] = 1;
        for(;a[i-P[i]]==a[i+P[i]] && (i-P[i]>=0);P[i]++);
        if(mx<i+P[i])
        {
            mx = i+P[i];
            id = i;
        }
    }
}

int GetLength(int* P, int size)
{
    int i,max=-1;
    for(i=0; i<size; i++)
        if(max<P[i])
            max = P[i];
    return max-1;
}

char* ChangeChar(char* a)
{
    int size = strlen(a);
    char* b = (char*)malloc((2*size+1)*sizeof(char));
    b[0] = '#';
    for(int i=0
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值