62 lines
1.3 KiB
Java
62 lines
1.3 KiB
Java
//给定一个包含大写字母和小写字母的字符串 s ,返回 通过这些字母构造成的 最长的回文串 。
|
|
//
|
|
// 在构造过程中,请注意 区分大小写 。比如 "Aa" 不能当做一个回文字符串。
|
|
//
|
|
//
|
|
//
|
|
// 示例 1:
|
|
//
|
|
//
|
|
//输入:s = "abccccdd"
|
|
//输出:7
|
|
//解释:
|
|
//我们可以构造的最长的回文串是"dccaccd", 它的长度是 7。
|
|
//
|
|
//
|
|
// 示例 2:
|
|
//
|
|
//
|
|
//输入:s = "a"
|
|
//输入:1
|
|
//
|
|
//
|
|
// 示例 3:
|
|
//
|
|
//
|
|
//输入:s = "bb"
|
|
//输入: 2
|
|
//
|
|
//
|
|
//
|
|
//
|
|
// 提示:
|
|
//
|
|
//
|
|
// 1 <= s.length <= 2000
|
|
// s 只能由小写和/或大写英文字母组成
|
|
//
|
|
// Related Topics 贪心 哈希表 字符串 👍 393 👎 0
|
|
|
|
package leetcode.editor.cn;
|
|
|
|
//409:最长回文串
|
|
public class LongestPalindrome {
|
|
public static void main(String[] args) {
|
|
Solution solution = new LongestPalindrome().new Solution();
|
|
|
|
}
|
|
|
|
//leetcode submit region begin(Prohibit modification and deletion)
|
|
class Solution {
|
|
public int longestPalindrome(String s) {
|
|
int[] letters = new int[128];
|
|
char[] arr = s.toCharArray();
|
|
for (char c : arr) letters[c]++;
|
|
int res = 0;
|
|
for (int i : letters) res += i - (i % 2);
|
|
return res == arr.length ? res : res + 1;
|
|
}
|
|
}
|
|
//leetcode submit region end(Prohibit modification and deletion)
|
|
|
|
} |