刷题感悟 - Longest Palindrome

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刷题感悟 - Longest Palindrome相关的知识,希望对你有一定的参考价值。

最近死磕较高难度的题目 深感自己的基本数据结构掌握不够熟练 因此 刷题较慢了些

刷了一道简单的题目涨涨自信

题目: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.

思路 :这题要求对称数 的长度 ,如果采用二维数组来计数在代码上和之间复杂度上麻烦了 因此用map的形式来存储char 遍历一遍 相同的删掉并计数 ,

 要考虑特殊情况:刚好长度为字符串长度 

 Map在比较过程中 能有效的节约时间 

代码如下

    public int longestPalindrome(String s) {
        // Write your code here
        if(s.length()==0)return 0;
        char[] chs = s.toCharArray();
        int count=0;
        Map<Character,String > keys=new HashMap<>();
        for(char ch:chs){
            if(keys.containsKey(ch)){
                count++;
                keys.remove(ch);
            }else{
                keys.put(ch,null);
            }
        }if(s.length()==count*2)return count*2;
        return 2*count+1;
    }

 

以上是关于刷题感悟 - Longest Palindrome的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode409. Longest Palindrome

longest-palindrome

409. Longest Palindrome

Leetcode: Longest Palindrome

LeetCode 409 Longest Palindrome

[leetcode-409-Longest Palindrome]