当前位置:网站首页>leetcode: 266. All Palindromic Permutations
leetcode: 266. All Palindromic Permutations
2022-08-05 00:20:00 【OceanStar's study notes】
题目来源
题目描述
给定一个字符串,判断该字符串中是否可以通过重新排列组合,形成一个回文字符串.
题目解析
思路
回文序列:
- If the length of the string is an odd length,Only one letter appears an odd number of times,其余均为偶数
- If the length of the string is parity length,The number of occurrences of each letter must be an even number
实现
同一个map来统计
class Solution {
public:
bool canPermutePalindrome(string s) {
unordered_map<char, int> m;
int cnt = 0;
for (auto a : s) ++m[a];
for (auto a : m) {
if (a.second % 2 == 1) ++cnt;
}
return cnt == 0 || (s.size() % 2 == 1 && cnt == 1);
}
};
用set也可以
class Solution {
public:
bool canPermutePalindrome(string s) {
unordered_set<char> st;
for (auto a : s) {
if (!st.count(a)) st.insert(a);
else st.erase(a);
}
return st.empty() || st.size() == 1;
}
};
bitset
- 建立一个 256 大小的 bitset,每个字母根据其 ASCII Different code values have their corresponding positions
- Then we iterate over the entire string,遇到一个字符,Just put the binary number of its corresponding position flip 一下,就是0变1,1变0
- Then after the traversal is complete,All corresponding positions with an even number of occurrences should also be 0,And when the number of occurrences is odd,对应位置就为1了
- That is to say, we only need statistics in the end1的个数,You know the number of letters with odd occurrences,as long as the number is less than2就是回文数
class Solution {
public:
bool canPermutePalindrome(string s) {
bitset<256> b;
for (auto a : s) {
b.flip(a);
}
return b.count() < 2;
}
};
边栏推荐
猜你喜欢
随机推荐
【论文笔记】—低照度图像增强—Unsupervised—EnlightenGAN—2019-TIP
GO中sync包自由控制并发的方法
node使用redis
Modelers experience sharing: model study method
leetcode:267. 回文排列 II
NMS原理及其代码实现
机器学习(公式推导与代码实现)--sklearn机器学习库
怎么将自己新文章自动推送给自己的粉丝(巨简单,学不会来打我)
Cloud native - Kubernetes 】 【 scheduling constraints
"Relish Podcast" #397 The factory manager is here: How to use technology to empower the law?
Mysql based
KT148A电子语音芯片ic方案适用的场景以及常见产品类型
#yyds dry goods inventory #Switching equipment serious packet loss troubleshooting
什么是次世代建模(附学习资料)
Three tips for you to successfully get started with 3D modeling
[Happy Qixi Festival] How does Nacos realize the service registration function?
.net (C#) get year month day between two dates
图解 Canvas 入门
DNS常见资源记录类型详解
游戏3D建模入门,有哪些建模软件可以选择?





![情侣牵手[贪心 & 抽象]](/img/7d/1cafc000dc58f1c5e2e92150be7953.png)



