当前位置:网站首页>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;
}
};
边栏推荐
猜你喜欢
随机推荐
MongoDB权限验证开启与mongoose数据库配置
typeScript - Partially apply a function
机器学习(公式推导与代码实现)--sklearn机器学习库
redis可视化管理软件Redis Desktop Manager2022
【无标题】线程三连鞭之“线程池”
tiup update
00、数组及字符串常用的 API(详细剖析)
从单体架构迁移到 CQRS 后,我觉得 DDD 并不可怕
【无标题】
Privacy Computing Overview
After another 3 days, I have sorted out 90 NumPy examples, and I can't help but bookmark it!
Brainstorm: Complete Backpack
jenkins发送邮件系统配置
SQL关联表更新
对写作的一些感悟
情侣牵手[贪心 & 抽象]
uinty lua 关于异步函数的终极思想
怎么将自己新文章自动推送给自己的粉丝(巨简单,学不会来打我)
KT148A voice chip ic working principle and internal architecture description of the chip
翁恺C语言程序设计网课笔记合集