首页 > 其他 > 详细

longest-palindrome

时间:2016-10-03 23:27:41      阅读:203      评论:0      收藏:0      [点我收藏+]
https://leetcode.com/problems/longest-palindrome/

public class Solution {
    public int longestPalindrome(String s) {
        char []charr = s.toCharArray();
        Arrays.sort(charr);
        int result = 0;
        for (int i=0; i<charr.length; i++) {
            if (i==charr.length-1) {
                break;
            }
            if (charr[i] == charr[i+1]) {
                result += 2;
                i++;
            }
        }
        if (result < charr.length) {
            result++;
        }
        return result;
    }
}

 

longest-palindrome

原文:http://www.cnblogs.com/charlesblc/p/5929656.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!