#yyds干货盘点# LeetCode程序员面试金典:回文排列

时间:2022-12-01 11:13:02

题目:

给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。

回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。

回文串不一定是字典当中的单词。

 

示例1:

输入:"tactcoa"

输出:true(排列有"tacocat"、"atcocta",等等)

 

代码实现:

class Solution {
public boolean canPermutePalindrome(String s) {
HashMap<Character, Integer> dic = new HashMap<>();
for (int i = 0; i < s.length(); i++) {
dic.put(s.charAt(i), dic.getOrDefault(s.charAt(i), 0) + 1);
}
int odd = 0;
for (int val : dic.values()) {
if (val % 2 == 1) {
if (++odd > 1)
return false;
}
}
return true;
}
}