LeetCode Longest Palindromic Substring 日常刷题

class Solution {
public:
	string longestPalindrome(string s) {
		string t = "$#";
		for (int i = 0; i < s.size(); ++i) {
			t += s[i];
			t += '#';
		}                                      //利用了 Manacher's Algorithm 马拉车算法
		int nl = t.size();
		int p[nl] = { 0 },  id = 0, mx = 0, resId = 0, resMx = 0;
		for (int i = 1; i < t.size(); ++i) {
			p[i] = mx > i ? min(p[2 * id - i], mx - i) : 1;
			while (t[i + p[i]] == t[i - p[i]]) ++p[i];
			if (mx < i + p[i]) {
				mx = i + p[i];
				id = i;
			}
			if (resMx < p[i]) {
				resMx = p[i];            //用resMx记录最大的半径,用resId记录原点!
				resId = i;
			}
		}
		return s.substr((resId - resMx) / 2, resMx - 1);  //注意此时输出的是原来数组,不是后来新建的数组,所以控制好输出的起始位置和长度!
	}
};

参考博客:

https://www.cnblogs.com/grandyang/p/4464476.html

Manacher算法:

https://subetter.com/algorithm/manacher-algorithm.html

刷题总结:

求回文数可利用Manacher算法,大大降低时间复杂度和空间复杂度!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值