Skip to content

Instantly share code, notes, and snippets.

View moccaplusplus's full-sized avatar

Tomasz Gawel moccaplusplus

View GitHub Profile
@moccaplusplus
moccaplusplus / ManacherAlgorithmImpl.java
Last active August 29, 2015 13:59
Manacher Algorithm Implementation
public class ManacherAlgorithmImpl {
private int mLongestPalindromeLength;
private int mLongestPalindromeStart = -1;
public void findLongestPalindrome(String string) {
final int strlen = string.length();
if (strlen == 0) {
mLongestPalindromeStart = -1;
mLongestPalindromeLength = 0;