本文旨在对于个人知识的梳理以及知识的分享,如果有不足的地方,欢迎大家在评论区指出
题目描述
给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。
回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。
回文串不一定是字典当中的单词。
示例1:
输入:"tactcoa"
输出:true(排列有"tacocat"、"atcocta",等等)
题目链接
题目分析
这道题要求我们判断给定的字符串是否可以重新排列为一个回文序列,回文序列的要求是奇数字符的数量为1个或者0个,所以我们就可以直接遍历一遍字符串,判断上述条件即可
解题代码
Python
class Solution:
def canPermutePalindrome(self, s: str) -> bool:
cnt = collections.Counter(s)
odd = 0
for c in cnt:
if cnt[c]%2:
odd += 1
if odd==0 or odd==1:
return True
return False
Java
class Solution {
public boolean canPermutePalindrome(String s) {
int n = s.length();
Map<Character, Integer> cnt = new HashMap<>();
for(int i=0; i<n; i++){
char c = s.charAt(i);
cnt.put(c, cnt.getOrDefault(c, 0)+1);
}
int odd = 0; // 统计奇数个数字符的数量
for(Character c:cnt.keySet()){
if(cnt.get(c)%2!=0) odd += 1;
}
if(odd==1 || odd==0) return true;
return false;
}
}