`
hcx2013
  • 浏览: 90365 次
社区版块
存档分类
最新评论

Shortest Palindrome

 
阅读更多

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".

 

public class Solution {
    public String shortestPalindrome(String s) {
        if (s == null || s.length() == 0) {
        	return "";
        }
        String copy = s;
        StringBuffer stringBuffer = new StringBuffer(s);
        StringBuffer reverse = stringBuffer.reverse();
        s = reverse.toString();
        char[] charArr = manacherString(s);
        int[] pArr = new int[charArr.length];
        int index = -1;
        int pR = -1;
        int max = -1;
        for (int i = 0; i < pArr.length; i++) {
        	pArr[i] = pR > i ? Math.min(pArr[2 * index - i], pR - i) : 1;
        	while (i + pArr[i] < charArr.length && i - pArr[i] > -1) {
        		if (charArr[i + pArr[i]] == charArr[i - pArr[i]]) {
        			pArr[i]++;
        		} else {
        			break;
        		}
        	}
        	if (i + pArr[i] > pR) {
        		pR = i + pArr[i];
        		index = i;
        	}
        	if (pR == charArr.length) {
        		max = pArr[i];
        		break;
        	}
		}
        char[] tmp = new char[s.length() - max + 1];
        for (int i = 0; i < tmp.length; i++) {
        	tmp[tmp.length - 1 - i] = charArr[i * 2 + 1];
		}
        return new StringBuffer(new String(tmp)).reverse() + copy;
    }

	private char[] manacherString(String s) {
		// TODO Auto-generated method stub
		char[] charArray = s.toCharArray();
		char[] res = new char[s.length() * 2 + 1];
		int index = 0;
		for (int i = 0; i < res.length; i++) {
			res[i] = (i & 1) == 0 ? '#' : charArray[index++];
		}
		return res;
	}
}

 

分享到:
评论

相关推荐

    LeetCode最全代码

    ...The number of questions is increasing recently. Here is the classification of all `468` questions. ...I'll keep updating for full summary and better solutions....|-----|---------------- | --------------- |...

    leetcode添加元素使和等于-njuee_LeetCode_Solutions:本仓库主要记录平时遇到的一些编程问题、算法、思路

    Palindrome,为了满足时间复杂度要求,这里求回文串使用Manacher算法 2019/07/11 新增 224. Basic Calculator,求表达式的值,一般思路是把常规的“中缀表达式”转换为“逆波兰式”(后缀表达式),然后计算(用栈很方便) ...

    LeetCode:LeetCode上一些算法的解答

    3. **栈和队列**:栈(Last In First Out, LIFO)和队列(First In First Out, FIFO)是两种基础数据结构,常见题目如"有效的括号"(Valid Parentheses)用栈来检查括号匹配,"最短回文串"(Shortest Palindrome)则...

    997leetcodec-myleetcode:我的leetcode解决方案

    214-shortest-palindrome.c。 使用二分搜索更新 287-find-the-duplicate-number.c 和弗洛伊德的龟兔赛跑(循环检测)算法。 (完毕) 使用哈希表更新 496-next-greater-element-ic。 (完毕) 使用优化算法更新 798-...

    leetcode浇花-LCSolutions:我的力扣解决方案

    leetcode 浇花力扣解决方案 简单的 #0001 - Two Sum #0007 - Reverse Integer #0009 - Palindrome Number #0035 - Search ...Palindrome ...Shortest Word Distance #0246 - Strobogrammatic Number #0263 -

    leetcode1-240题中文题解,md格式,java

    3. leetcode-214-Shortest-Palindrome.md:第214题,寻找最短回文串,可能涉及到字符串操作和动态规划。 4. leetcode-145-Binary-Tree-Postorder-Traversal.md:第145题,二叉树的后序遍历,是关于树结构和递归的...

    戳气球leetcode-leetcode:leetcode

    keywords:Palindrome(mic), Subsequence Array 螺旋矩阵Spiral Matrix 顺时针打印矩阵 Next Permutation Product of Array Except Self 189.rotate-array 283.move-zero Range Sum Query - Immutables 66.Plus One ...

    leetcode分类-leetcode:leetcode刷题(中等难度分类)

    5. 图论与最短路径:"Shortest Path in Binary Matrix"(二进制矩阵中最短路径)涉及Dijkstra算法或BFS(广度优先搜索),寻找最短路径。 三、字符串处理 字符串处理题目也是LeetCode的重要部分,例如"Reverse ...

    算法:python和C中的算法

    算法清单所有程序都分为1级到4级(最简单的是1级)排序:实现气泡排序| O(n ^ 2)| 2级:实现选择排序| O(n ^ 2)| 2级:实现插入排序| O(n ^ 2)| 2级:构建最大堆并按升序对数组进行排序| 3级 :构建最大堆并以...

Global site tag (gtag.js) - Google Analytics