2021/5/23 刷题笔记回文排列
Posted 黑黑白白君
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021/5/23 刷题笔记回文排列相关的知识,希望对你有一定的参考价值。
回文排列
【题目】
给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。 回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。
- 回文串不一定是字典当中的单词。
示例1:
- 输入:“tactcoa”
- 输出:true(排列有"tacocat"、“atcocta”,等等)
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/palindrome-permutation-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
【我的方法】
根据回文串的特点:至多只能有一个奇数数量的字母。
class Solution:
def canPermutePalindrome(self, s: str) -> bool:
s=list(s)
if len(s)==1:
return True
s.sort()
count1=0
temp=1
i=1
while(i<len(s)):
if count1>1:
return False
if s[i]==s[i-1]:
temp+=1
else:
if temp%2:
count1+=1
temp=1
i+=1
if s.count(s[i-1])%2:
count1+=1
if count1>1:
return False
else:
return True
# 执行用时:48 ms, 在所有 Python3 提交中击败了12.34%的用户
# 内存消耗:14.9 MB, 在所有 Python3 提交中击败了29.83%的用户
【优化】
用空间换时间,使用哈希表来统计每个字符的数量。
class Solution:
def canPermutePalindrome(self, s: str) -> bool:
s=list(s)
if len(s)==1:
return True
hashs={}
for i in s:
if i in hashs.keys():
hashs[i]+=1
else:
hashs[i]=1
# print(hashs)
count1=0
for i in hashs.values():
# print(i)
if i%2:
count1+=1
if count1>1:
return False
return True
# 执行用时:32 ms, 在所有 Python3 提交中击败了94.40%的用户
# 内存消耗:14.9 MB, 在所有 Python3 提交中击败了60.64%的用户
以上是关于2021/5/23 刷题笔记回文排列的主要内容,如果未能解决你的问题,请参考以下文章