409. Longest Palindrome

    xiaoxiao2021-03-25  147

    

    Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters.

    This is case sensitive, for example "Aa" is not considered a palindrome here.

    Note: Assume the length of given string will not exceed 1,010.

    Example:

    Input:"abccccdd"Output:7Explanation:One longest palindrome that can be built is "dccaccd", whose length is 7.

    public class Solution { public int longestPalindrome(String s) { if(s==null||s.length()==0) return 0; int[] n=new int[52]; int res=0; for(int i=0;i<s.length();i++) { if(s.charAt(i)>=97) { n[s.charAt(i)-'a']++; } else { n[s.charAt(i)-'A'+26]++; } } for(int i=0;i<52;i++) { if(n[i]%2==0) res=res+n[i]; else res=res+n[i]-1; } if(res<s.length()) return res+1; else return res; } }

    转载请注明原文地址: https://ju.6miu.com/read-6360.html

    最新回复(0)