Given a string, determine if a permutation of the string could form a palindrome.
For example,"code"
-> False, "aab"
-> True, "carerac"
-> True.
Hint:
[LeetCode] Palindrome Permutation 回文全排列
原文:http://www.cnblogs.com/grandyang/p/5223238.html