首页 > 其他 > 详细

[LeetCode] Palindrome Permutation 回文全排列

时间:2016-02-27 18:07:06      阅读:175      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!