-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathLongestPalindromicSubstring.cpp
59 lines (45 loc) · 1.29 KB
/
LongestPalindromicSubstring.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Given a string S, find the longest palindromic substring in S.
Substring of string S:
S[i...j] where 0 <= i <= j < len(S)
Palindrome string:
A string which reads the same backwards. More formally, S is palindrome if reverse(S) = S.
Incase of conflict, return the substring which occurs first ( with the least starting index ).
Example :
Input : "aaaabaaa"
Output : "aaabaaa"
LINK: https://www.interviewbit.com/problems/longest-palindromic-substring/
*/
string Solution::longestPalindrome(string s)
{
int maxlen = 1, start = 0, low, high;
int len = s.length();
for(int i=0;i<len;i++)
{
low = i-1;
high = i;
while(low>=0 && high<len && s[low]==s[high])
{
if((high-low+1) > maxlen || ((high-low+1)==maxlen && low<start))
{
start = low;
maxlen = (high-low+1);
}
low--;
high++;
}
low = i-1;
high = i+1;
while(low>=0 && high<len && s[low]==s[high])
{
if((high-low+1) > maxlen || ((high-low+1)==maxlen && low<start))
{
start = low;
maxlen = (high-low+1);
}
low--;
high++;
}
}
return s.substr(start,maxlen);
}