原题:
力扣https://leetcode-cn.com/problems/palindrome-permutation-lcci/
给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。
回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。
回文串不一定是字典当中的单词。
示例1:
输入:"tactcoa"
输出:true(排列有"tacocat"、"atcocta",等等)
package com.leetcode.hash; import java.util.HashMap; import java.util.Map; public class Solution23 { public static void main(String[] args) { String s = "tactcoa"; System.out.println(canPermutePalindrome(s)); } public static boolean canPermutePalindrome(String s) { HashMap<Character, Integer> map = new HashMap<Character, Integer>(); for (int i = 0; i < s.length(); i++) { char c = s.charAt(i); if (map.containsKey(c)) { map.put(c, map.get(c) + 1); } else { map.put(c, 1); } } int count = 0; for (Integer value : map.values()) { if (count > 1) { return false; } if (value % 2 == 1) { count++; } } return count > 1 ? false:true; } }