#yyds干货盘点# leetcode算法题:最长回文串
Posted 灰太狼_cxh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#yyds干货盘点# leetcode算法题:最长回文串相关的知识,希望对你有一定的参考价值。
题目:
给定一个包含大写字母和小写字母的字符串 s ,返回 通过这些字母构造成的 最长的回文串 。
在构造过程中,请注意 区分大小写 。比如 "Aa" 不能当做一个回文字符串。
示例 1:
输入:s = "abccccdd"
输出:7
解释:
我们可以构造的最长的回文串是"dccaccd", 它的长度是 7。
示例 2:
输入:s = "a"
输入:1
示例 3:
输入:s = "bb"
输入: 2
代码实现:
class Solution
public int longestPalindrome(String s)
int[] count = new int[128];
int length = s.length();
for (int i = 0; i < length; ++i)
char c = s.charAt(i);
count[c]++;
int ans = 0;
for (int v: count)
ans += v / 2 * 2;
if (v % 2 == 1 && ans % 2 == 0)
ans++;
return ans;
以上是关于#yyds干货盘点# leetcode算法题:最长回文串的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# LeetCode面试题:无重复字符的最长子串
#yyds干货盘点#马拉车算法解最长回文子串!Manacher