28. 字符串的全排列之第2篇[string permutation with repeating chars]

【本文链接】

http://www.cnblogs.com/hellogiser/p/string-permutation-with-repeating-chars.html

题目】

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

分析

之前的博文28.字符串的排列之第1篇[StringPermutation]中已经介绍了如何对字符串进行全排列,但是只能针对所有字符都不同的情况,如果含有重复字符,则将不再适合。

因此现在要想办法来去掉重复的排列。如何去掉呢?

由于全排列就是从第一个字符x起分别与它后面的字符y进行交换。那么如果在x到y之间已经存在和y相等的字符,那么x和y就不应该交换。

比如对12324:

(1)第一个数1与第一个数1交换,得到12324;

(2)第一个数1与第二个数2交换,得到21324;

(3)第一个数1与第三个数3交换,得到32124;

(4)第一个数1与第四个数2交换,由于在第一个数和第四个数之间存在一个2和第四个数相等,因此这两个数字不应该交换;

(5)第一个数1与第五个数4交换,得到42321;

这样我们总结除了在全排列中去掉重复的规则:去重的全排列就是从第一个数字起每个数分别与它后面非重复出现的数字交换

可以写出如下函数决定2个字符是否进行交换。

C++
Code






1
2
3
4
5
6
7
8
9
10
11
12

 

// judge whether we should swap str[index] and str[i]

bool IsSwap(char *str, int index, int i)

{
    // char in [index,i) equals to str[i] ?

    // abcb ===> 0,3

    for (int p = index; p < i; p++)

     {

        if (str[p] == str[i])

            return false;

     }
    return true;
}

那么在之前的代码基础之上,只需要在交换2个字符之间进行一下判断即可,完整代码和测试用例如下:

【代码】

C++
Code






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183

 

// 28_StringPermutationCombination.cpp : Defines the entry point for the console application.

//
/*
     version: 1.0

     author: hellogiser

     blog: http://www.cnblogs.com/hellogiser

     date: 2014/5/25
*/


#include "stdafx.h"
#include <iostream>
#include <vector>
using namespace std;

// swap a and b

void swap(char &a, char &b)

{
    char t = a;

     a = b;

     b = t;
}

// print string

void Print(char *str)

{
    if (str == NULL)

        return;

    char *ch = str;

    while(*ch)

     {

         cout << *ch;

         ch++;

     }

     cout << endl;
}

// abc, abcb

// judge whether we should swap str[index] and str[i]

bool IsSwap(char *str, int index, int i)

{
    // char in [index,i) equals to str[i] ?

    // abcb ===> 0,3

    for (int p = index; p < i; p++)

     {

        if (str[p] == str[i])

            return false;

     }
    return true;
}

// string permutation recursively

void Permutation(char *str, int len, int index)

{
    //base case
    if (index == len)

     {

        // we have got a permutation,so print it

        Print(str);

        return;
     }

    for (int i = index; i < len; i++)

     {

        // decide whether to swap

        if (IsSwap(str, index, i))

         {

             swap(str[index], str[i]);

             Permutation(str, len, index + 1);

             swap(str[index], str[i]);

         }

     }
}

// abcb: containing same char in strings

void StringPermutation(char *str)

{
    if (str == NULL)

        return;
    int len = strlen(str);

     Permutation(str, len, 0);
}

//================================================

//                 test cases                    //

//================================================
void test_base(char *str)
{

     StringPermutation(str);

     cout << "------------------------\n";
}

void test_case1()
{

    char str[] = "1";

     test_base(str);
}

void test_case2()
{

    char str[] = "123";

     test_base(str);
}

void test_case3()
{

    char str[] = "121";

     test_base(str);
}

void test_case4()
{

    char str[] = "111";

     test_base(str);
}

void test_case5()
{

    char str[] = "1231";

     test_base(str);
}

void test_case6()
{

    char str[] = "1221";

     test_base(str);
}

void test_main()
{

     test_case1();

     test_case2();

     test_case3();

     test_case4();

     test_case5();

     test_case6();
}
//================================================

//                 test cases                    //

//================================================

int _tmain(int argc, _TCHAR *argv[])

{
     test_main();

    return 0;
}
/*

1
------------------------
123
132
213
231
321

312
------------------------
121
112
211

------------------------
111
------------------------
1231

1213
1321
1312
1132
1123
2131
2113
2311
3211

3121
3112
------------------------
1221
1212
1122

2121
2112
2211
------------------------

*/

【参考】

http://www.cnblogs.com/hellogiser/p/3738844.html

http://blog.csdn.net/hackbuteer1/article/details/7462447

【本文链接】

http://www.cnblogs.com/hellogiser/p/string-permutation-with-repeating-chars.html

28. 字符串的全排列之第2篇[string permutation with repeating
chars],布布扣,bubuko.com

28. 字符串的全排列之第2篇[string permutation with repeating
chars]

时间: 2024-12-29 07:25:35

28. 字符串的全排列之第2篇[string permutation with repeating chars]的相关文章

28 - 字符串的全排列和组合

字符串的排列 题目描述:http://ac.jobdu.com/problem.php?pid=1369 输入一个字符串,按字典序打印出该字符串中字符的所有排列.例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba. 分两步: 第一步:求所有可能出现在第一个位置的字符,即把第一个字符和后面所有的字符都交换一次: 第二步:固定第一个位置的字符,求后面所有字符的排列. 终止条件:当要求固定位置的字符为'\0'时,说明已经排列到字符串尾.

字符串数组全排列——逐个追加组合算法

我们在笔试面试过程中经常会遇到关于排列与组合的问题,其实这些可以通过递归简单的实现,看下面两个例子: (1)关于字符串排列的问题 输入一个字符串,打印出该字符串中字符的所有排列.例如输入字符串abc,则输出由字符a.b.c所能排列出来的所有字符串abc.acb.bac.bca.cab和cba. 可以这样想:固定第一个字符a,求后面两个字符bc的排列.当两个字符bc的排列求好之后,我们把第一个字符a和后面的b交换,得到bac;接着我们固定第一个字符b,求后面两个字符ac的排列.现在是把c放到第一位

字符串的全排列(java)

差不多半个月没写博客了,今天再写一篇. 字符串全排列相信大家都不陌生,对于我来说真的是写了又忘,忘了又写,所以决定写成一篇博客,废话不多说下面我来分析问题: 问题描述:给定一个字符串写出它的全排列,例如ab,全排列是ab,ba,而abc的全排列abc,acb,bac,bca,cab,cba. 解题思路:我们以具体例子分析,假如abc,如上所示,它的全排列是不是就是把字符串中每一个字符,放在第一位,然后再对剩下的字符串做全排列,如把a放在第一位,剩下bc 全排列是bc,cb,组合起来就是abc,a

字符串的全排列-递归算法

题目:给定字符串S[0...N-1],设计算法,枚举S的全排列. 假设字符串为“1234”,首先考虑1,然后问题就变成了考虑“234”的全排列,所以问题规模缩小了1,然后再考虑2,依次类推.可以采用递归算法. 1-234 2-134 3-124 4-123 假设有重复字符,则重复字符的全排列就是每个字符分别与它后面非重复出现的字符交换. 1 #include <iostream> 2 #include <string> 3 4 using namespace std; 5 6 //

字符串的全排列JAVA实现

package com.kpp; /** * 求字符串的全排列 * 递归的思想 * 比如 abcde 先求出abcd的全排列,然后将e分别插入全排列的5个位置 * a 全排列 a * ab 全排列 ab ba * abd 全排列即是 cab acb abc cba bca bac * * @author kpp * */ public class QuanPaiLie { /** * @param args */ public static void main(String[] args) {

显示字符串的全排列

显示字符串的全排列: 1 public static void AllSequenceofString(String string){ 2 if(string == null) 3 return; 4 char[] chars = string.toCharArray(); 5 Permutation(chars,0); 6 } 7 private static void Permutation(char[] chars, int index) { 8 // TODO Auto-generate

含重复字符的字符串的全排列问题(Java)

本代码既可以输出重复和不重复字符串的全排列 /** * 含重复字符的字符串的全排列问题 * * */ public class S_28 { public static int count = 0; public static void main(String[] args){ char[] list = {'a','b','c'}; char[] list1 = {'a','b','b'}; //permutation(list); permutation(list1); System.out

字符串的全排列和全组合

输入:abc 输出:bac,cba,acb,bca,cab,abc 全排列的问题: public ArrayList<String> Permutation(String str) { ArrayList<String> list = new ArrayList<String>(); if(str!=null && str.length()>0){ helper(str.toCharArray(),list,0); Collections.sort

Redis系列-存储篇string主要操作命令

Redis系列-存储篇string主要操作命令 通过上两篇的介绍,我们的redis服务器基本跑起来.db都具有最基本的CRUD功能,我们沿着这个脉络,开始学习redis丰富的数据结构之旅,当然先从最简单且常用的string开始. 1.新增 a)set 语法:set key value 解释:把值value赋给key,如果key不存在,新增:否则,更新 [[email protected] ~]# redis-cli redis 127.0.0.1:6379> set user.1.name zh