题目:

Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrome you can find by performing this transformation.

For example:

Given "aacecaaa", return "aaacecaaa".

Given "abcd", return "dcbabcd".

链接: http://leetcode.com/problems/shortest-palindrome/

题解:

KMP ?  Manacher ?  Suffix Array?

猜想 - 找到以s.charAt(0)开始的最长的palindrome,然后再用s.length()减去这个长度,就是我们需要添加的字符长度。这时候我们再在原String之前添加就可以了。

假设s = "bcba",那么以s.charAt(0)为左边界的longest palindrome是"bcb",需要添加的是"a",返回"abcba"。

假设s = "bba",那么以s.charAt(0)为左边界的longest palindrome是"bb",需要添加的是"a",返回"abba"。

假设s = "bcd",那么以s.charAt(0)为左边界的longest palindrome长度为"b",需要添加的是"cd",返回"dcbcd"。

这样把问题转化为求以s.charAt(0)为起点的longest palindrome问题。 接下来就是coding了,应该可以用Manacher或者KMP在O(n)解决,晚上回家再试写。 假如不是只在左边添加,而是哪里都可以插入的话,那么就和Edit Distance很像,应该能够用DP解决。

又查了查,好像有些类似的问题叫做palindrome prefix。

Manacher:

稍微修改了一下自己在5. Longest Palindromic Substring的代码,最后求出P的时候,计算一下最长的prefix就可以了,代码略繁琐,二刷要好好再简化。

Time Complexity - O(n), Space Complexity - O(n)。

public class Solution {
private String s;
private char[] t;
private int[] p; public String shortestPalindrome(String s) {
if(s == null || s.length() <= 1)
return s;
this.s = s;
preprocess();
p = new int[t.length]; int center = 0, right = 0;
for(int i = 1; i < t.length - 1; i++) {
int mirror = 2 * center - i;
if(right > i)
p[i] = Math.min(right - i, p[mirror]); while(i - p[i] >= 0 && i + p[i] < p.length && t[i + p[i]] == t[i - p[i]]) //try to expand
p[i]++; if(i + p[i] > right){
center = i;
right = i + p[i];
}
} center = 0;
for(int i = 1; i < p.length - 1; i++) {
if(p[i] == i + 1)
center = i;
} return new StringBuilder(s.substring((center + p[center]) / 2)).reverse().toString() + s;
} private void preprocess() {
t = new char[s.length() * 2 + 1];
for(int i = 0; i < s.length(); i++) {
t[2 * i] = '#';
t[2 * i + 1] = s.charAt(i);
}
t[t.length - 1] = '#'; }
}

KMP:

对于这道题目, KMP应该是更容易想到的方法才对。因为这里要求longest palindrome prefix,和KMP的预处理步骤,求Pattern P的Prefix table几乎一模一样。下面我们用KMP来求解。

下面的解法是Discuss里的,先拿过来再研究。自己其实还没有想透。

public class Solution {
public String shortestPalindrome(String s){
String s_reverse = new StringBuilder(s).reverse().toString();
String str = s + "." + s_reverse;
int[] size = new int[str.length()];
for(int i = 1; i < str.length(); i++){
int temp = size[i - 1];
while(temp != 0 && str.charAt(temp) != str.charAt(i))
temp = size[temp - 1];
if(str.charAt(temp) == str.charAt(i))
temp++;
size[i] = temp;
} return s_reverse.substring(0, s.length() - size[str.length() - 1]) + s;
}
}

Suffix Array: (未成功, 还没想好,需要修改)

有O(n)的构建方法,不过比较难写出来。现在做不到用Suffix Array来解这道题目其实是因为知识和理解的不够,弱爆了唉...

public class Solution {
public String shortestPalindrome(String s) {
String t = new StringBuilder(s).reverse().toString(); String[] sPrefixArray = getPrefixArray(s);
String[] tSuffixArray = getSuffixArray(t); int max = 0; for(int i = 0; i < s.length(); i++) {
if(sPrefixArray[i].equals(tSuffixArray[i]))
max = i;
} return new StringBuilder(s.substring(max)).reverse().toString() + s;
} private String[] getPrefixArray(String s) {
int N = s.length();
String[] res = new String[N];
for(int i = 0; i < N; i++) {
res[i] = s.substring(0, i + 1);
}
return res;
} private String[] getSuffixArray(String s) {
int N = s.length();
String[] res = new String[N];
for(int i = N - 1; i >= 0; i--) {
res[N - 1 - i] = s.substring(i);
}
return res;
}
}

递归双指针对向遍历:

在Discuss终于发现了神解法。 来自这个帖子 - https://leetcode.com/discuss/51223/my-7-lines-recursive-java-solution  . 主要使用两个指针从前后对向遍历,就跟我们判断String是否是Palindrome一样,假如s.charAt(i) == s.charAt(j),则j++。走完之后的结果j所在假如是s.length() - 1,则整个String为Palindrome,返回s,否则,j所在的位置及其以后的部分肯定不是Palindrome,这是我们要把这部分翻转并且加到结果的前面。至于 substring(0, j)这部分,我们仍需要使用递归的方法继续判断。非常非常巧妙。其实一开始思考求以s.charAt(0)为起点的方法时,觉得应该有方法可以不用KMP,Manacher,Rabin-Karp等等String Match的方法,这下终于见到了。真厉害。

Time Complexity - O(n), Space Complexity - O(n)

public class Solution {
public String shortestPalindrome(String s){
int j = 0;
for (int i = s.length() - 1; i >= 0; i--)
if (s.charAt(i) == s.charAt(j))
j += 1;
if (j == s.length())
return s;
String suffix = s.substring(j);
return new StringBuffer(suffix).reverse().toString() + shortestPalindrome(s.substring(0, j)) + suffix;
}
}

题外话:

下午表哥正好在WTC附近开会,中午和同事们吃饭的时候接到他的电话,赶紧过去聚一聚。聊天中谈到打算换工作的事情,表哥说他不太懂计算机这行,但现在公司看中的不是背题背概念,重要的还是思维和解决问题的能力。他说得很对。拿到问题,如何思考,如何解决,怎样把问题抽象成为数学模型,计算机模型等等,这方面我都要好好加强。以后也许有机会的话还要学一学统计方面的知识,和MBA方面的知识。快速学习的能力也很重要,现在新技术新概念层出不穷,要有快速接受,学习,吸收的能力才行。

Reference:

http://www.cnblogs.com/grandyang/p/4523624.html

http://problem-solving-notes.blogspot.com/2010/11/one-solution-of-palindromic-prefix.html

http://stackoverflow.com/questions/7043778/longest-palindrome-in-a-string-using-suffix-tree

http://algo2006.csie.dyu.edu.tw/paper/2/A24.pdf

https://www.youtube.com/watch?v=5i7oKodCRJo

https://web.stanford.edu/class/cs97si/10-string-algorithms.pdf

http://www.nayuki.io/page/knuth-morris-pratt-string-matching

https://leetcode.com/discuss/64309/clean-kmp-solution-with-super-detailed-explanation

https://leetcode.com/discuss/51223/my-7-lines-recursive-java-solution

https://leetcode.com/discuss/52564/a-kmp-based-java-solution-with-explanation

https://leetcode.com/discuss/questions/oj/shortest-palindrome?start=0

https://leetcode.com/discuss/36833/java-ac-code-may-help-u-another-need-more-test-cases

214. Shortest Palindrome的更多相关文章

  1. [LeetCode] 214. Shortest Palindrome 最短回文串

    Given a string s, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  2. LeetCode 214 Shortest Palindrome

    214-Shortest Palindrome Given a string S, you are allowed to convert it to a palindrome by adding ch ...

  3. Java for LeetCode 214 Shortest Palindrome

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  4. 【LeetCode】214. Shortest Palindrome

    Shortest Palindrome Given a string S, you are allowed to convert it to a palindrome by adding charac ...

  5. 【LeetCode】214. Shortest Palindrome 解题报告(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 前缀是否回文 判断前缀 相似题目 参考资料 日期 题 ...

  6. 214 Shortest Palindrome 最短回文串

    给一个字符串 S, 你可以通过在字符串前面添加字符将其转换为回文串.找到并返回可以用这种方式转换的最短回文串.例如:给出 "aacecaaa",返回 "aaacecaaa ...

  7. [LeetCode] Shortest Palindrome 最短回文串

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  8. Shortest Palindrome

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

  9. 【leetcode】Shortest Palindrome(hard)★

    Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. ...

随机推荐

  1. QT编译mysql驱动

    一. 下载mysql C链接库 地址:http://dev.mysql.com/downloads/ 根据当前系统选择下载: 二. 安装下载好的mysql驱动文件 注意,一定要安装在不含有中文.空格以 ...

  2. [摘抄] 为什么 Linq 可以高效率查询 SQL ?

    From C# in Depth(3rd) - Jon Skeet using (LinqDemoDataContext db = new LinqDemoDataContext()) { var f ...

  3. C#对象转JSON字符串和JSON字符串转对象

    namespace Net.String.ConsoleApplication { using System; using System.Data; using System.Collections; ...

  4. chrome jsonView插件安装

    chrome 应用商店打不开,想装插件愁死人了. 今天想到一个好方法,以 jsonView插件为例分享一下. 1.打开 https://github.com : 2.搜索 jsonView 链接:ht ...

  5. Cassandra1.2文档学习(16)—— 模式的变化

    参考文档:http://www.datastax.com/documentation/cassandra/1.2/webhelp/index.html#cassandra/dml/dml_schema ...

  6. Laravel框架数据库CURD操作、连贯操作总结

    这篇文章主要介绍了Laravel框架数据库CURD操作.连贯操作.链式操作总结,本文包含大量数据库操作常用方法,需要的朋友可以参考下 一.Selects 检索表中的所有行 复制代码代码如下: $use ...

  7. ecshop改造读写分离配置与改造

    前两天配置好了mysql主从方式,今天就拿ecshop练习读写分离.以下代码仅供学习参考,不成熟的地方,还需完善. <?php $db_name = "ecshop"; $p ...

  8. Jqplot在joomla组件中的应用

    (1)在com_collect组件中采用的是ajax获取json类型的值.[http://www.jqplot.com/tests/data-renderers.php]这上边有实例. (2)在jqp ...

  9. what is WLAN ? when and why we need use it ?

    无线局域网络(Wireless Local Area Networks: WLAN)是相当便利的数据传输系统,它利用射频(Radio Frequency: RF)的技术,取代旧式碍手碍脚的双绞铜线(C ...

  10. realloc() 用法详解

    原型:extern void *realloc(void *mem_address, unsigned int newsize); 语法:指针名=(数据类型*)realloc(要改变内存大小的指针名, ...