码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Palindrome Permutation 回文全排列

时间:2016-02-27 18:07:44      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

 

Given a string, determine if a permutation of the string could form a palindrome.

For example,
"code" -> False, "aab" -> True, "carerac" -> True.

Hint:

  1. Consider the palindromes of odd vs even length. What difference do you notice?
  2. Count the frequency of each character.
  3. If each character occurs even number of times, then it must be a palindrome. How about character which occurs odd number of times?

 

[LeetCode] Palindrome Permutation 回文全排列

标签:

原文地址:http://www.cnblogs.com/grandyang/p/5223238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!