当前位置:网站首页>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;
}
};
边栏推荐
猜你喜欢
随机推荐
.net(C#)获取两个日期间隔的年月日
【LeetCode】矩阵模拟相关题目汇总
Cython
怎么将自己新文章自动推送给自己的粉丝(巨简单,学不会来打我)
MAUI Blazor 权限经验分享 (定位,使用相机)
Chinese and Japanese color style
After another 3 days, I have sorted out 90 NumPy examples, and I can't help but bookmark it!
RK3399平台开发系列讲解(内核调试篇)2.50、嵌入式产品启动速度优化
电子行业MES管理系统的主要功能与用途
建模师经验分享:模型学习方法
GO中sync包自由控制并发的方法
could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
什么是次世代建模(附学习资料)
【数据挖掘概论】数据挖掘的简单描述
典型相关分析CCA计算过程
三、实战---爬取百度指定词条所对应的结果页面(一个简单的页面采集器)
Essential knowledge for entry-level 3D game modelers
三大技巧让你成功入门3D建模,零基础小白必看
性能测试如何准备测试数据
ansible学习笔记分享-含剧本示例









