博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode409.Longest Palindrome
阅读量:7224 次
发布时间:2019-06-29

本文共 1183 字,大约阅读时间需要 3 分钟。

题目要求

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.

输入一个字符串,计算用这个字符串中的值构成一个最长回数的长度是多少。

思路和代码

这是一道easy难度的题目,但是一次性写对也有挑战。直观来看,我们立刻就能想到统计字符串中每个字符出现的次数,如果该字符出现次数为偶数,则字符一定存在于回数中。但是我们忽略了一点,即如果字符中存在一个额外的单个字符位于中间,该字符串也能构成回数,如aabaa。这个细节需要注意。

下面是O(N)时间的实现:

public int longestPalindrome(String s) {        int[] count = new int[52];        int max = 0;        for(char c : s.toCharArray()) {            if(c>='a' && c<='z'){                count[c-'a']++;                if(count[c-'a'] % 2 == 0) {                    max +=2;                }            }                        if(c>='A' && c<='Z'){                count[c-'A' + 26]++;                if(count[c-'A'+26] % 2 == 0) {                    max += 2;                }            }        }                if(max < s.length()) {            max++;        }        return max;    }

转载地址:http://vjkfm.baihongyu.com/

你可能感兴趣的文章
lvs+keepalived+nginx+tomcat高可用高性能集群部署
查看>>
实验:搭建主DNS服务器
查看>>
org.gjt.mm.mysql.Driver与com.mysql.jdbc.Driver区别
查看>>
部署exchange2010三合一:之五:功能测试
查看>>
nginx编译安装参数
查看>>
代码托管
查看>>
第一次给ThinkPHP5核心框架提pull request的完整过程
查看>>
U-Mail邮件系统何以誉为信息整合中转枢纽
查看>>
强大的vim配置文件,让编程更随意
查看>>
崛起于Springboot2.X之配置文件详解(10)
查看>>
定时执行程序-Quartz简单实例
查看>>
【CF 应用开发大赛】MyfCMS系统
查看>>
windows下kangle虚拟主机-架设java空间的教程及心得
查看>>
Discuz! X2.5:文件目录结构
查看>>
我的友情链接
查看>>
TCP/IP协议及首部初了解
查看>>
防火墙iptables
查看>>
CUDA搭建
查看>>
memcached与PostgreSQL缓存命中机制
查看>>
百度地图路线检索(3)
查看>>