标签:最长回文串 problems 包含 ble 输入 nbsp for def 字符
给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。
在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串。
注意:
假设字符串的长度不会超过 1010。
示例 1:
输入:
"abccccdd"
输出:
7
解释:
我们可以构造的最长的回文串是"dccaccd", 它的长度是 7。
链接:https://leetcode-cn.com/problems/longest-palindrome
class Solution { public int longestPalindrome(String s) { int cnt=0; Map<Character,Integer> map = new HashMap<>(); for(char c :s.toCharArray()) { map.put(c, map.getOrDefault(c, 0)+1); } for(Map.Entry<Character, Integer> entry : map.entrySet()) { //奇数 if(entry.getValue()%2!=0) { cnt += entry.getValue()-1; } else { cnt+=entry.getValue(); } } return cnt<s.length()?cnt+1:cnt; } }
标签:最长回文串 problems 包含 ble 输入 nbsp for def 字符
原文地址:https://www.cnblogs.com/cocobear9/p/12953552.html