longest-palindromic-substring

about

you are given a string s, and you need found the longest palindromic substring about it

solution

this is a medium complex simulation algo,and it can be optmized by Dynamic programming

this is simulation stage code, not dunamic programmming

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
60

func longestPalindrome(s string) string {
// 1、对每一点进行中央扩散 判断从该点延伸出去最大的回文川是多大
res := ""
runes := []rune(s)
if len(runes) <= 1 {
return s
}
for i := 0; i < len(runes); i++ {
// 考虑两种情况
// 1、奇数回文
tempOddMaxString := getOddMaxString(runes, i)
// 2、偶数回文
tempEvenMaxString := getEvenMaxString(runes, i)
tempMaxString := tempEvenMaxString
if len(tempEvenMaxString) < len(tempOddMaxString) {
tempMaxString = tempOddMaxString
}
if len(tempMaxString) > len(res) {
res = tempMaxString
}
}
return res
}

func getEvenMaxString(runes []rune, i int) string {
left := i
right := i + 1
for left >= 0 && right <= len(runes)-1 {
if left < 0 || right >= len(runes) {
return string(runes[left:right])
}
if runes[left] != runes[right] {
return string(runes[left+1:right])
}
left = left - 1
right = right + 1
}
if left < 0 || right >= len(runes) {
return string(runes[left+1 : right])
} else {
return string(runes[left : right+1])
}

}

func getOddMaxString(runes []rune, i int) string {
left, right := i, i
for left >= 0 && right <= len(runes)-1 {
left = left - 1
right = right + 1
if left < 0 || right >= len(runes) {
return string(runes[left+1 : right])
}
if runes[left] != runes[right] {
return string(runes[left+1 : right])
}
}
return string(runes[left : right+1])
}

longest-palindromic-substring
http://orikey0.github.io/2024/02/10/longest-palindromic-substring/
作者
Howard Lee
发布于
2024年2月10日
许可协议