【leetcode】【easy】【每日一题】409. Longest Palindrome

本文探讨了如何从给定字符串中找出能构建的最长回文串长度,通过统计字符出现次数并计算成对字符,实现高效算法解决。示例输入abccccdd,输出为7,解释为最长回文串dccaccd。

409. 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.

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

Example:

Input:
"abccccdd"

Output:
7

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

题目链接:https://leetcode-cn.com/problems/longest-palindrome/

 

思路

回文除了中间的字符外,两边的字符都是成对出现的,因此对串的字符出现次数统计,然后计算成对的字符。

class Solution {
public:
    int longestPalindrome(string s) {
        if(s.size()==0) return 0;
        map<char,int> record;
        for(int i=0; i<s.size(); ++i){
            ++record[s[i]];
        }
        int res = 0;
        bool hasSingle = false;
        for(auto iter=record.begin(); iter!=record.end();++iter){
            int num = iter->second;
            if(num == 1){
                hasSingle = true;
            }else {
                res += num / 2 * 2;
                hasSingle = (num%2==1)?true:hasSingle;
            }
        }
        if(hasSingle) ++res;
        return res;
    }
};

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值