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

本文共 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://nymml.baihongyu.com/

你可能感兴趣的文章
IOS开发网络第一天之02NSThread的基本使用
查看>>
静态页面时用js获取后台信息
查看>>
解决linux环境下,atom编辑器不支持中文的问题
查看>>
pyspider爬虫学习-文档翻译-Frequently-Asked-Questions.md
查看>>
小众时代的定制服务器来临了么
查看>>
IPv4/IPv6 socket
查看>>
#pragma once与#ifndef #define ...#endif的区别
查看>>
模拟复数及其运算
查看>>
IOS上路_01-Win7+VMWare9+MacOSX10.8+XCode4.6.3
查看>>
给Visual Studio 2010添加Windows Phone 7模板
查看>>
一次 web 工程性能测试
查看>>
wordpress 伪静态nginx设置
查看>>
今天写sql无意中发现了一个深坑
查看>>
记一次dell R720服务器ESXI5.5系统宕机的奇葩经历
查看>>
CMD一键获取 所有连接过的WIFI密码
查看>>
RabbitMQ
查看>>
android 下修改 hosts文件 及 out of memory的解决
查看>>
cocos2d win7 安卓环境配置开发
查看>>
java面试题之六(转)
查看>>
jQuery零基础入门——(六)修改DOM结构
查看>>