面试题 01.04. 回文排列

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

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

示例1:

输入:“tactcoa”
输出:true(排列有"tacocat"、“atcocta”,等等)

统计各字符出现的次数,为奇数次的次数不能超过1次

class Solution {
    public boolean canPermutePalindrome(String s) {
        Map<Character,Integer> map = new HashMap<>();
        for(int i=0; i<s.length();i++){
            int num = map.containsKey(s.charAt(i))?map.get(s.charAt(i))+1:1;
            map.put(s.charAt(i),num);
            
        }
        Set<Character> values = map.keySet();
        int count = 0;
        for(Character key:values){
            if(map.get(key)%2==1){
                count++;
                if(count>1) return false;
            }
        }
        return true;

    }
}
class Solution {
    public boolean canPermutePalindrome(String s) {
        Map<Character,Integer> map = new HashMap<>();
        for(int i=0; i<s.length();i++){       
            map.put(s.charAt(i),map.getOrDefault(s.charAt(i),0)+1);       
        }
        
        int count = 0;
        for(Integer val : map.values()){
            if(val%2==1){
                count++;
                if(count>1) return false;
            }
        }
        return true;
    }
}
上一篇:剑指 Offer 48. 最长不含重复字符的子字符串


下一篇:java中 charAt()的用法