-1

我在网上看到了这个问题,我试图在C++. 我有以下算法:

char permutations( const char* word ){

  int size = strlen( word );
  if( size <= 1 ){
      return word;
  }
  else{
    string output = word[ 0 ];
    for( int i = 0; i < size; i++ ){
        output += permutations( word );
        cout << output << endl;
        output = word[ i ];
     }
  }
  return "";
}

例如,如果我有abc输入,我想显示abc, acb, bac, bca, cab, cba。所以,我想做的是

'abc' => 'a' + 'bc' => 'a' + 'b' + 'c'
                    => 'a' + 'c' + 'b'

所以我需要在每个函数调用中传递一个wordless char。有人可以帮忙怎么做吗?

4

2 回答 2

5

我建议使用algorithmC++ 中的头文件库来做,更容易;并且作为一个函数可以这样写:

void anagram(string input){
    sort(input.begin(), input.end());
    do
        cout << input << endl;
    while(next_permutation(input.begin(), input.end()));
}

然而,既然你想要它没有 STL,你可以这样做:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void swap (char *x, char *y)
{
    char ch = *x;
    *x = *y;
    *y = ch;
};

void permutate_(char* str, size_t index )
{
    size_t i = 0;
    size_t slen = strlen(str);
    char lastChar = 0;

    if (index == slen )
    {
        puts(str);
        return;
    }

    for (i = index; i < slen; i++ )
    {
        if (lastChar == str[i])
            continue;
        else
            lastChar = str[i];

        swap(str+index, str+i);
        permutate_(str, index + 1);
        swap(str+index, str+i);
    }
}

// pretty lame, but effective, comparitor for determining winner
static int cmpch(const void * a, const void * b)
{
    return ( *(char*)a - *(char*)b );
}

// loader for real permutor
void permutate(char* str)
{
    qsort(str, strlen(str), sizeof(str[0]), cmpch);
    permutate_(str, 0);
}

您可以通过向其发送一个排序的字符数组来调用它,

permutate("Hello World");

非 STL 方法是从这里获得的。

于 2012-09-29T23:00:43.027 回答
0

STL 很棒:

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

void permutations(const char *word) {
    string s = word;
    sort(s.begin(), s.end());
    cout << s << endl;
    while(next_permutation(s.begin(), s.end()))
        cout << s << endl;
}

int main() {
    permutations("abc");
    return 0;
}

现在,next_permutation可以相当简单地实现。从字符串的末尾开始,向后迭代,直到找到一个x小于下一个元素的元素。x与大于字符串其余部分的下一个值交换x,然后反转后面的元素。所以,abcd变成abdc因为c < dcdba变成dabcsince并且我们翻转;c < d的最后三个字母 变成了因为和我们交换。dcbabdcacabdb < dbc

于 2012-09-29T23:00:15.357 回答