LeetCode.5-最长回文子串

给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000。

示例 1:
输入: “babad”
输出: “bab”
注意: “aba” 也是一个有效答案。

示例 2:
输入: “cbbd”
输出: “bb”

C#语言实现
中心扩散法
遍历每一个索引,以这个索引为中心,利用“回文串”中心对称的特点,往两边扩散,看最多能扩散多远。
注意: 回文串在长度为奇数和偶数的时候,“回文中心”的形式是不一样的。
奇数回文串的“中心”是一个具体的字符,例如:回文串 “aba” 的中心是字符 “a”;
偶数回文串的“中心”是位于中间的两个字符的“空隙”,例如:回文串串 “abba” 的中心是两个 “b” 中间的那个“空隙”。

public static string LongestPalindrome(string s)
{
    if (s.Length <= 1) return s;
    string maxString = "";
    for (int i = 0; i < s.Length - 1; ++i)
    {
        string str1 = CenterSpread(s, i, i);
        string str2 = CenterSpread(s, i, i + 1);
        string str = str1.Length > str2.Length ? str1 : str2;
        if (str.Length > maxString.Length) maxString = str;
    }
    return maxString;
}

public static string CenterSpread(string s, int left, int right)
{
    while (left >= 0 && right <= s.Length - 1 && s[left] == s[right])
    {
            --left;
            ++right;
    }
    return s.Substring(left + 1, right - left - 1);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值