zoukankan      html  css  js  c++  java
  • [LeetCode] Palindrome Permutation I & II

    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 };
  • 相关阅读:
    python练习1--求和
    python--文件操作
    【省选】SDOI2017_树点涂色_LuoguP3703/LOJ2001_LCT/线段树
    【洛谷】P1784 数独
    【洛谷】P2671 求和
    【洛谷】P2261 [CQOI2007]余数求和
    【转载】利用向量积(叉积)计算三角形的面积和多边形的面积
    【洛谷】P1090 合并果子
    【转载】学习C++ -> 类(Classes)的定义与实现
    【洛谷】P2142 高精度减法
  • 原文地址:https://www.cnblogs.com/easonliu/p/4784930.html
Copyright © 2011-2022 走看看