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

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

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.

Input:"abccccdd"Output:7Explanation:One longest palindrome that can be built is "dccaccd", whose length is 7.
 
寻找字符串重组之后能存在的最长的回文串。
思路清晰:
用数组记录出现相同字符的个数,只要个数大于2个那么一定能在最后的回文串中出现,如果有单个的只能最多增加以一个长度。
public class Solution {    public int longestPalindrome(String s) {        int[] str = new int[123];        for (int i=0;i
1){ sum += str[i]; if(str[i]%2 != 0){ flag = 1; sum--; } }else if (str[i] == 1) flag = 1; } for (int i=97;i<=122;i++){ if(str[i] > 1){ sum += str[i]; if(str[i]%2 != 0){ flag = 1; sum--; } }else if (str[i] == 1) flag = 1; } return sum + flag; }}
然后根据高手提示,还可以少很多代码,如果最后的回文串长度小于原来的长度,直接加一就可以了,如果和原来相同则不加,因为多余下来的只能有一个字符处于最后回文串的中间位置。
更改后代码是这样的。
public class Solution {    public int longestPalindrome(String s) {        int[] str = new int[123];        for (int i=0;i

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

你可能感兴趣的文章
关于图形加速方面优化的心得
查看>>
IT职场人生系列之十四:经验积累
查看>>
1,python基础入门
查看>>
Java vs Erlang
查看>>
jsp+Servlet验证码及验证
查看>>
网站源码 网站模板 扁平化后台管理 Bootstrap、HTML5、CSS3 Java
查看>>
建立xenserver的iso库
查看>>
Azure AD 同步后相关属性不生效
查看>>
我的友情链接
查看>>
trie树(字典树)
查看>>
extjs4.0 滚动条无效解决办法
查看>>
gitlab 2.2和更高版本升级到2.7
查看>>
我和linux的第十六天
查看>>
Openstack-Mitaka Ceilometer 部署心得
查看>>
OpenStack tokens id获取测试
查看>>
RHEL6 命令行界面安装图形套件
查看>>
kickstart无人值守安装——制作光盘文件
查看>>
Cookie欺騙與代碼隱患
查看>>
mysql master slave 1( 2015-11)
查看>>
AppDelegate生命周期回调顺序
查看>>