剑指offer面试题之字符串的排列

题目:

输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。

算法:

采用递归的方式,将传入的数组在当前位置和其后的所有元素依次交换位置,交换后再依次递归后面的位置。对可能出现的重复元素则不再交换

代码:

#include <iostream>
#include <vector>
#include <string>

using namespace std;
class Solution {
public:
    vector<string> Permutation(string str) {
        vector<string> res;
        if(str.length() == 0)return res;
        RE(res,str,0);
        return res;
    }
    void RE(vector<string> &res, string &str, int s){
        if(s == str.length()){
            res.push_back(str);
            return;
        }
        for(int i = s; i < str.length(); i ++){
            bool flag  = false;
            for(int j = s; j < i; j ++){
                if(str[j] == str[i]){
                    flag = true;
                    continue;
                }
                    
            }
            if(flag)continue;
            swap(str[s],str[i]);
            RE(res,str,s+1);
            swap(str[s],str[i]);
        }
        return;
    }
};

测试程序

int main(int argc, char **argv) {
  Solution s;
  vector<string> res;
  string str;
  //输入为“#”时停止程序
    while(str != "#")
    {
      cout << "请输入字符串: ";
      cin >> str;
      if(str == "#")break;
      res = s.Permutation(str);
      cout << "所有排列为: ";
      for(auto c:res)cout << c << "  ";
      cout << endl;
    }
    return 0;
}

结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值