[LeetCode] Palindrome Permutation I & II

本文介绍了两种回文排列算法:一种用于判断字符串是否能通过排列形成回文;另一种用于生成所有可能的回文排列组合。文章提供了详细的代码实现,并探讨了回文的特点及算法思路。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Palindrome Permutation

Given a string, determine if a permutation of the string could form a palindrome.

For example,
"code" -> False, "aab" -> True, "carerac" -> True.

Hint:

    1. Consider the palindromes of odd vs even length. What difference do you notice?
    2. Count the frequency of each character.
    3. If each character occurs even number of times, then it must be a palindrome. How about character which occurs odd number of times
 1 class Solution {
 2 public:
 3     bool canPermutePalindrome(string s) {
 4         vector<int> cnt(256, 0);
 5         for (auto a : s) ++cnt[a];
 6         bool flag = false;
 7         for (auto n : cnt) if (n & 1) {
 8             if (!flag) flag = true;
 9             else return false;
10         }
11         return true;
12     }
13 };

 

 

Palindrome Permutation II

Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form.

For example:

Given s = "aabb", return ["abba", "baab"].

Given s = "abc", return [].

Hint:

  1. If a palindromic permutation exists, we just need to generate the first half of the string.
  2. To generate all distinct permutations of a (half of) string, use a similar approach from: Permutations II or Next Permutation.

没按提示来,直接用的DFS,不知道符不符合要求。

 1 class Solution {
 2 public:
 3     void dfs(vector<string> &res, vector<int> &cnt, string &s, int l, int r) {
 4         if (l >= r) {
 5             res.push_back(s);
 6             return;
 7         }
 8         for (int i = 0; i < cnt.size(); ++i) if (cnt[i] >= 2) {
 9             cnt[i] -= 2;
10             s[l] = s[r] = i;
11             dfs(res, cnt, s, l + 1, r - 1);
12             cnt[i] += 2;
13         }
14     }
15     vector<string> generatePalindromes(string s) {
16         vector<int> cnt(256, 0);
17         for (auto a : s) ++cnt[a];
18         bool flag = false;
19         for (int i = 0; i < cnt.size(); ++i) if (cnt[i] & 1) {
20             if (!flag) {
21                 flag = true;
22                 s[s.length() / 2] = i;
23             } else {
24                 return {};
25             }
26         }
27         vector<string> res;
28         dfs(res, cnt, s, 0, s.length() - 1);
29         return res;
30     }
31 };

 

转载于:https://www.cnblogs.com/easonliu/p/4784930.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值