LeetCode题解——Longest Palindromic Substring
题目:
给定一个字符串S,返回S中最长的回文子串。S最长为1000,且最长回文子串是唯一。
解法:
①遍历,对于每个字符,计算以它为中心的回文子串长度(长度为奇数),同时计算以它和右边相邻字符为中心的回文子串长度(长度为偶数)。时间为O(N2)。
②另外,有一个很奇妙的算法,称为Manacher算法,参考 http://www.cnblogs.com/daoluanxiaozi/p/longest-palindromic-substring.html ,时间为O(N)。
代码:
①直接扩展:
class Solution {
public:
string longestPalindrome(string s) {
int start = , max_len = ;
for(int i = ; i < s.size(); ++i)
{
int left, right, len; len = ; //以当前字符为中心的回文串
for(left = i - , right = i + ; left >= && right < s.size() && s[left] == s[right]; --left, ++right)
len += ;
if(len > max_len)
{
start = left + ;
max_len = len;
} len = ; //以当前字符以及右边相邻字符为中心的回文串
for(left = i, right = i + ; left >= && right < s.size() && s[left] == s[right]; --left, ++right)
len += ;
if(len > max_len)
{
start = left + ;
max_len = len;
}
}
return s.substr(start, max_len);
}
};
②Manacher算法:
class Solution {
public:
string longestPalindrome(string s) {
int slen = s.size();
if(slen == || slen == )
return s; const int nslen = * slen + ; //每个字符两边填充#,将奇偶长度的回文串统一处理
string ns(nslen, '#');
ns[] = '^'; //开始和结尾添加特殊字符,防止越界
ns[nslen - ] = '$';
for(int i = ; i < slen; ++i)
ns[ * i + ] = s[i]; int id = , mx = ; //id为已找到的最右回文串的中心下标,mx为该回文串的最右下标
int p[nslen]; //p保存以每个字符为中心的回文串的半径,这个半径值就是去掉填充字符之后实际回文串长度 for(int i = ; i < nslen - ; ++i)
{
p[i] = mx > i ? min(mx - i, p[ * id - i]) : ; //利用已有信息,给当前字符为中心的回文串赋半径初值 while(ns[i - - p[i]] == ns[i + + p[i]]) //向两边扩张
++p[i]; if(i + p[i] > mx)
{
mx = i + p[i];
id = i;
}
} int mid = , max_len = ;
for(int i = ; i < nslen - ; ++i) //找出最长的回文串
if(p[i] > max_len)
{
mid = i;
max_len = p[i];
} return s.substr((mid - - max_len)/, max_len); //求出回文串第一个字符的下标,返回回文串
}
};
LeetCode题解——Longest Palindromic Substring的更多相关文章
- Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法)
Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法) Given a string s, find the longest pal ...
- LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法
LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法 题记 本文是LeetCode题库的第五题,没想到做这些题的速度会这么慢,工作之 ...
- LeetCode(3)题解: Longest Palindromic Substring
https://leetcode.com/problems/longest-palindromic-substring/ 题目: Given a string S, find the longest ...
- 求最长回文子串 - leetcode 5. Longest Palindromic Substring
写在前面:忍不住吐槽几句今天上海的天气,次奥,鞋子里都能养鱼了...裤子也全湿了,衣服也全湿了,关键是这天气还打空调,只能瑟瑟发抖祈祷不要感冒了.... 前后切了一百零几道leetcode的题(sol ...
- LeetCode 5 Longest Palindromic Substring(最长子序列)
题目来源:https://leetcode.com/problems/longest-palindromic-substring/ Given a string S, find the longest ...
- 【JAVA、C++】LeetCode 005 Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum lengt ...
- leetcode:Longest Palindromic Substring(求最大的回文字符串)
Question:Given a string S, find the longest palindromic substring in S. You may assume that the maxi ...
- [LeetCode][Python]Longest Palindromic Substring
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/longest ...
- 【LeetCode】Longest Palindromic Substring 解题报告
DP.KMP什么的都太高大上了.自己想了个朴素的遍历方法. [题目] Given a string S, find the longest palindromic substring in S. Yo ...
随机推荐
- 4.1 spring-alias 标签的解析;
对于之前漫长的,最核心的Bean标签的解析就没什么好讲的了, 首先看看使用方法: <bean id="car" name="cat0" class=&qu ...
- 全面学习cookies
来自<javascript高级程序设计 第三版:作者Nicholas C. Zakas>的学习笔记(五) 本来想自己总结的,但是某文总结太好了(http://www.cnblogs.com ...
- The 11th Zhejiang Provincial Collegiate Programming Contest->Problem G:G - Ternary Calculation
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3782 题意:把输入的三元运算用计算机运算出来. ; ci ...
- 【技术贴】webservice cxf2 客户端动态调用报错No operation was found with the name
No operation was found with the name xxx 出错原因是因为发布服务的接口所在包路径和此接口实现类包路径不一致,比如你的服务接口可能放在了包com.x.interF ...
- python的web压力测试工具-pylot安装使用
http://blog.csdn.net/chenggong2dm/article/details/10106517 pylot是python编写的一款web压力测试工具.使用比较简单.而且测试结果相 ...
- 【leetcode】4Sum(middle)
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar ...
- tomcat部署javaweb项目的三种方式
一.将项目文件夹或war包直接拷贝到tomcat的webapps下 二.在Tomcat\conf\Catalina\localhost下建立xml文件 修改内容如下<Context path=& ...
- hdu 4658 Integer Partition
五角数定理!!可以参考这个http://www.cnblogs.com/xin-hua/p/3242428.html 代码如下: #include<iostream> #include& ...
- SQLite入门与分析(四)---Page Cache之事务处理(2)
写在前面:个人认为pager层是SQLite实现最为核心的模块,它具有四大功能:I/O,页面缓存,并发控制和日志恢复.而这些功能不仅是上层Btree的基础,而且对系统的性能和健壮性有关至关重要的影响. ...
- 轻量级Java_EE企业应用实战-第5章Hibernate的基本用法-001
1. package org.crazyit.app.domain; import javax.persistence.*; /** * Description: <br/> * ��վ: ...