Listando todas as permutações de uma string / número inteiro


159

Uma tarefa comum na programação de entrevistas (embora não da minha experiência em entrevistas) é pegar uma string ou um número inteiro e listar todas as permutações possíveis.

Existe um exemplo de como isso é feito e a lógica por trás da solução desse problema?

Eu vi alguns trechos de código, mas eles não foram bem comentados / explicados e, portanto, difíceis de seguir.


1
Aqui está uma pergunta para Permutações com algumas boas respostas explicativas, incluindo um gráfico , mas não em C #.
usuário desconhecido

Respostas:


152

Primeiro de tudo: cheira a recursão, é claro!

Como você também queria conhecer o princípio, fiz o possível para explicar a linguagem humana. Eu acho que a recursão é muito fácil na maioria das vezes. Você só precisa entender duas etapas:

  1. O primeiro passo
  2. Todas as outras etapas (todas com a mesma lógica)

Na linguagem humana :

Em resumo:
1. A permutação de 1 elemento é um elemento.
2. A permutação de um conjunto de elementos é uma lista de cada um dos elementos, concatenada com toda permutação dos outros elementos.

Exemplo:

Se o conjunto tiver apenas um elemento ->
retorne-o.
perm (a) -> a

Se o conjunto tiver dois caracteres: para cada elemento: retorne o elemento, com a permutação do restante dos elementos adicionados, da seguinte forma:

perm (ab) ->

a + perm (b) -> ab

b + perm (a) -> ba

Além disso: para cada caractere do conjunto: retorne um caractere concatenado com uma perumação do restante do conjunto

perm (abc) ->

a + perm (bc) -> abc , acb

b + perm (ac) -> bac , bca

c + perm (ab) -> cab , cba

perm (abc ... z) ->

a + perm (...), b + perm (....)
....

Encontrei o pseudocódigo em http://www.programmersheaven.com/mb/Algorithms/369713/369713/permutation-algorithm-help/ :

makePermutations(permutation) {
  if (length permutation < required length) {
    for (i = min digit to max digit) {
      if (i not in permutation) {
        makePermutations(permutation+i)
      }
    }
  }
  else {
    add permutation to list
  }
}

C #

OK, e algo mais elaborado (e como está marcado c #), de http://radio.weblogs.com/0111551/stories/2002/10/14/permutations.html : Bastante demorado, mas decidi copiá-lo de qualquer maneira, a postagem não depende do original.

A função pega uma sequência de caracteres e anota todas as permutações possíveis dessa sequência exata; portanto, por exemplo, se "ABC" tiver sido fornecido, deve ocorrer:

ABC, ACB, BAC, BCA, CAB, CBA.

Código:

class Program
{
    private static void Swap(ref char a, ref char b)
    {
        if (a == b) return;

        var temp = a;
        a = b;
        b = temp;
    }

    public static void GetPer(char[] list)
    {
        int x = list.Length - 1;
        GetPer(list, 0, x);
    }

    private static void GetPer(char[] list, int k, int m)
    {
        if (k == m)
        {
            Console.Write(list);
        }
        else
            for (int i = k; i <= m; i++)
            {
                   Swap(ref list[k], ref list[i]);
                   GetPer(list, k + 1, m);
                   Swap(ref list[k], ref list[i]);
            }
    }

    static void Main()
    {
        string str = "sagiv";
        char[] arr = str.ToCharArray();
        GetPer(arr);
    }
}

21
Para um pouco mais de clareza, eu chamaria k "recursionDepth" e chamaria "maxDepth".
Nerf herder

3
A segunda troca ( Swap(ref list[k], ref list[i]);) é desnecessária.
Dance2die #

1
Obrigado por esta solução. Eu criei esse violino ( dotnetfiddle.net/oTzihw ) a partir dele (com a nomeação apropriada em vez de k e m). Tanto quanto eu entendo o algo, o segundo Swap é necessário (para voltar atrás) desde que você edita a matriz original no local.
Andrew

3
um ponto de menor importância: Parece que o método de Trocas é melhor para ser implementada com um tampão variável temporária e não usando XORs ( dotnetperls.com/swap )
Sergioet

7
Usando C # 7 tuplas você pode fazer a troca muito mais elegante:(a[x], a[y]) = (a[y], a[x]);
Darren

81

São apenas duas linhas de código se o LINQ está autorizado a usar. Por favor, veja minha resposta aqui .

EDITAR

Aqui está minha função genérica que pode retornar todas as permutações (não combinações) de uma lista de T:

static IEnumerable<IEnumerable<T>>
    GetPermutations<T>(IEnumerable<T> list, int length)
{
    if (length == 1) return list.Select(t => new T[] { t });

    return GetPermutations(list, length - 1)
        .SelectMany(t => list.Where(e => !t.Contains(e)),
            (t1, t2) => t1.Concat(new T[] { t2 }));
}

Exemplo:

IEnumerable<IEnumerable<int>> result =
    GetPermutations(Enumerable.Range(1, 3), 3);

Saída - uma lista de listas inteiras:

{1,2,3} {1,3,2} {2,1,3} {2,3,1} {3,1,2} {3,2,1}

Como essa função usa o LINQ, requer .net 3.5 ou superior.


3
combinações e permutações são coisas diferentes. é semelhante, mas sua resposta parece estar respondendo a um problema diferente de todas as permutações de um conjunto de elementos.
Shawn Kovac

@ ShawnKovac, obrigado por apontar isso! Atualizei meu código de combinação para permutação.
Pengyang

1
@Pengyang, olhei para sua outra resposta e direi que isso me ajudou muito, mas tenho outra situação que não sei se você apontou a maneira correta de resolvê-la. Queria encontrar todas as permutações de uma palavra como 'HALLOWEEN', mas descobri que também quero incluir 'E' e 'E' no conjunto de resultados. Nas minhas iterações, faço um loop no seu método, dando maior comprimento a cada iteração (length ++) e esperaria que, dado o comprimento total da palavra HALLOWEEN (9 caracteres), eu obtivesse resultados com 9 caracteres de comprimento ... mas esse não é o caso: Eu só obter 7 (1 L e 1 e são omitidos)
MegaMark

Também gostaria de salientar que NÃO QUERO uma situação em que vejo 9 'H's, pois' H 'aparece apenas uma vez na palavra.
MegaMark

4
@MegaMark Esta função requer que os elementos sejam únicos. Tente isto:const string s = "HALLOWEEN"; var result = GetPermutations(Enumerable.Range(0, s.Length), s.Length).Select(t => t.Select(i => s[i]));
Pengyang

36

Aqui encontrei a solução. Foi escrito em Java, mas eu o converti para C #. Espero que ajude você.

Digite a descrição da imagem aqui

Aqui está o código em C #:

static void Main(string[] args)
{
    string str = "ABC";
    char[] charArry = str.ToCharArray();
    Permute(charArry, 0, 2);
    Console.ReadKey();
}

static void Permute(char[] arry, int i, int n)
{
    int j;
    if (i==n)
        Console.WriteLine(arry);
    else
    {
        for(j = i; j <=n; j++)
        {
            Swap(ref arry[i],ref arry[j]);
            Permute(arry,i+1,n);
            Swap(ref arry[i], ref arry[j]); //backtrack
        }
    }
}

static void Swap(ref char a, ref char b)
{
    char tmp;
    tmp = a;
    a=b;
    b = tmp;
}

É portado de outro idioma? Definitivamente +1 para a imagem, porque realmente agrega valor. No entanto, o próprio código parece ter um certo potencial de melhoria. Algumas partes secundárias não são necessárias, mas o mais importante é que eu recebo esse sentimento de C ++ quando enviamos algo e fazemos coisas em vez de fornecer parâmetros e buscar um valor retornado. Na verdade, eu usei sua imagem para implementar um código C # com estilo C # (o estilo é minha percepção pessoal, é claro), e isso me ajudou muito, então, quando eu publicar, eu definitivamente roubarei você (e credito você por isso).
Konrad Viltersten

21

A recursão não é necessária; aqui estão boas informações sobre esta solução.

var values1 = new[] { 1, 2, 3, 4, 5 };

foreach (var permutation in values1.GetPermutations())
{
    Console.WriteLine(string.Join(", ", permutation));
}

var values2 = new[] { 'a', 'b', 'c', 'd', 'e' };

foreach (var permutation in values2.GetPermutations())
{
    Console.WriteLine(string.Join(", ", permutation));
}

Console.ReadLine();

Eu tenho usado esse algoritmo há anos, ele tem complexidade de tempo e espaço O (N) para calcular cada permutação .

public static class SomeExtensions
{
    public static IEnumerable<IEnumerable<T>> GetPermutations<T>(this IEnumerable<T> enumerable)
    {
        var array = enumerable as T[] ?? enumerable.ToArray();

        var factorials = Enumerable.Range(0, array.Length + 1)
            .Select(Factorial)
            .ToArray();

        for (var i = 0L; i < factorials[array.Length]; i++)
        {
            var sequence = GenerateSequence(i, array.Length - 1, factorials);

            yield return GeneratePermutation(array, sequence);
        }
    }

    private static IEnumerable<T> GeneratePermutation<T>(T[] array, IReadOnlyList<int> sequence)
    {
        var clone = (T[]) array.Clone();

        for (int i = 0; i < clone.Length - 1; i++)
        {
            Swap(ref clone[i], ref clone[i + sequence[i]]);
        }

        return clone;
    }

    private static int[] GenerateSequence(long number, int size, IReadOnlyList<long> factorials)
    {
        var sequence = new int[size];

        for (var j = 0; j < sequence.Length; j++)
        {
            var facto = factorials[sequence.Length - j];

            sequence[j] = (int)(number / facto);
            number = (int)(number % facto);
        }

        return sequence;
    }

    static void Swap<T>(ref T a, ref T b)
    {
        T temp = a;
        a = b;
        b = temp;
    }

    private static long Factorial(int n)
    {
        long result = n;

        for (int i = 1; i < n; i++)
        {
            result = result * i;
        }

        return result;
    }
}

Trabalha fora da caixa!
Revobtz

1
talvez eu não entenda a notação O (n). O N não se refere a quantos "loops internos" são necessários para fazer seu algoritmo funcionar? Parece-me que se você tiver N números, parece que é O (N * N!) (porque N! vezes, ele precisa fazer N swaps). Além disso, ele tem que fazer uma tonelada de cópias de matriz. Esse código é "legal", mas eu não o usaria.
precisa saber é o seguinte

@ericfrazer Cada permutação usa apenas uma cópia de matriz e O(N-1)para a sequência e O(N)para os swaps, o que é O(N). E ainda estou usando isso na produção, mas com um refator para gerar apenas uma permutação como: GetPermutation(i)where 0 <= i <= N!-1. Ficarei feliz em usar algo com melhor desempenho do que isso; portanto, fique à vontade para chamar uma referência para algo melhor, a maioria das alternativas usa O(N!)na memória para que você possa verificar isso também.
Najera

11
void permute (char *str, int ptr) {
  int i, len;
  len = strlen(str);
  if (ptr == len) {
    printf ("%s\n", str);
    return;
  }

  for (i = ptr ; i < len ; i++) {
    swap (&str[ptr], &str[i]);
    permute (str, ptr + 1);
    swap (&str[ptr], &str[i]);
  }
}

Você pode escrever sua função de troca para trocar caracteres.
Isso deve ser chamado como permute (string, 0);


5
Parece C, não C #.
Jon Schneider

9

Antes de tudo, os conjuntos têm permutações, não seqüências de caracteres ou números inteiros; portanto, assumirei que você quer dizer "o conjunto de caracteres em uma sequência".

Observe que um conjunto de tamanho n tem n! n-permutações.

O seguinte pseudocódigo (da Wikipedia), chamado com k = 1 ... n! dará todas as permutações:

function permutation(k, s) {
    for j = 2 to length(s) {
        swap s[(k mod j) + 1] with s[j]; // note that our array is indexed starting at 1
        k := k / j; // integer division cuts off the remainder
    }
    return s;
}

Aqui está o código Python equivalente (para índices de matriz baseados em 0):

def permutation(k, s):
    r = s[:]
    for j in range(2, len(s)+1):
        r[j-1], r[k%j] = r[k%j], r[j-1]
        k = k/j+1
    return r

5
Que língua é essa? a pergunta está marcada como C #. eu não sei o que k := k / j;faz
Shawn Kovac

8

Versão ligeiramente modificada em C # que produz permutações necessárias em uma matriz de QUALQUER tipo.

    // USAGE: create an array of any type, and call Permutations()
    var vals = new[] {"a", "bb", "ccc"};
    foreach (var v in Permutations(vals))
        Console.WriteLine(string.Join(",", v)); // Print values separated by comma


public static IEnumerable<T[]> Permutations<T>(T[] values, int fromInd = 0)
{
    if (fromInd + 1 == values.Length)
        yield return values;
    else
    {
        foreach (var v in Permutations(values, fromInd + 1))
            yield return v;

        for (var i = fromInd + 1; i < values.Length; i++)
        {
            SwapValues(values, fromInd, i);
            foreach (var v in Permutations(values, fromInd + 1))
                yield return v;
            SwapValues(values, fromInd, i);
        }
    }
}

private static void SwapValues<T>(T[] values, int pos1, int pos2)
{
    if (pos1 != pos2)
    {
        T tmp = values[pos1];
        values[pos1] = values[pos2];
        values[pos2] = tmp;
    }
}

Uma pequena ressalva nesta implementação: ela funcionará corretamente apenas se você não tentar armazenar o valor da enumeração. Se você tentar fazer algo assim Permutations(vals).ToArray(), acabará com N referências à mesma matriz. Se você deseja armazenar os resultados, é necessário criar uma cópia manualmente. Por exemploPermutations(values).Select(v => (T[])v.Clone())
Pharap

8
class Program
{
    public static void Main(string[] args)
    {
        Permutation("abc");
    }

    static void Permutation(string rest, string prefix = "")
    {
        if (string.IsNullOrEmpty(rest)) Console.WriteLine(prefix);

        // Each letter has a chance to be permutated
        for (int i = 0; i < rest.Length; i++)
        {                
            Permutation(rest.Remove(i, 1), prefix + rest[i]);
        }
    }
}

1
Solução insana. Obrigado!
Cristian E.

7

Eu gostei da abordagem FBryant87 , pois é simples. Infelizmente, muitas outras "soluções" não oferecem todas as permutações ou, por exemplo, um número inteiro se contiverem o mesmo dígito mais de uma vez. Tome 656123 como um exemplo. A linha:

var tail = chars.Except(new List<char>(){c});

usando Exceto fará com que todas as ocorrências de ser removidos, ou seja, quando c = 6, dois dígitos são removidos e ficamos com, por exemplo 5123. Desde nenhuma das soluções Tentei resolvido isso, eu decidi tentar e resolver isso sozinho por FBryant87 s' código como base. Isto é o que eu vim com:

private static List<string> FindPermutations(string set)
    {
        var output = new List<string>();
        if (set.Length == 1)
        {
            output.Add(set);
        }
        else
        {
            foreach (var c in set)
            {
                // Remove one occurrence of the char (not all)
                var tail = set.Remove(set.IndexOf(c), 1);
                foreach (var tailPerms in FindPermutations(tail))
                {
                    output.Add(c + tailPerms);
                }
            }
        }
        return output;
    }

Simplesmente remova a primeira ocorrência encontrada usando .Remove e .IndexOf. Parece funcionar como planejado para o meu uso, pelo menos. Tenho certeza de que poderia ser mais inteligente.

Porém, uma coisa a ser observada: A lista resultante pode conter duplicatas; portanto, faça com que o método retorne, por exemplo, um HashSet ou remova as duplicatas após o retorno usando o método que desejar.


Funciona como uma beleza absoluta, em primeiro lugar eu descobri que alças duplicar caracteres +1
Jack Casey


5

Aqui está uma implementação de F # puramente funcional:


let factorial i =
    let rec fact n x =
        match n with
        | 0 -> 1
        | 1 -> x
        | _ -> fact (n-1) (x*n)
    fact i 1

let swap (arr:'a array) i j = [| for k in 0..(arr.Length-1) -> if k = i then arr.[j] elif k = j then arr.[i] else arr.[k] |]

let rec permutation (k:int,j:int) (r:'a array) =
    if j = (r.Length + 1) then r
    else permutation (k/j+1, j+1) (swap r (j-1) (k%j))

let permutations (source:'a array) = seq { for k = 0 to (source |> Array.length |> factorial) - 1 do yield permutation (k,2) source }

O desempenho pode ser bastante aprimorado alterando a troca para tirar proveito da natureza mutável das matrizes CLR, mas essa implementação é segura para threads em relação à matriz de origem e pode ser desejável em alguns contextos. Além disso, para matrizes com mais de 16 elementos, int deve ser substituído por tipos com maior precisão / arbitrária, pois o fatorial 17 resulta em um estouro de int32.


5

Aqui está uma solução simples em c # usando recursão,

void Main()
{
    string word = "abc";
    WordPermuatation("",word);
}

void WordPermuatation(string prefix, string word)
{
    int n = word.Length;
    if (n == 0) { Console.WriteLine(prefix); }
    else
    {
        for (int i = 0; i < n; i++)
        {
            WordPermuatation(prefix + word[i],word.Substring(0, i) + word.Substring(i + 1, n - (i+1)));
        }
    }
}

Obrigado pela solução muito simples e curta! :)
Kristaps Vilerts

4

Aqui está uma função de permutação fácil de entender para string e número inteiro como entrada. Com isso, você pode até definir o tamanho da sua saída (que, no caso normal, é igual ao comprimento da entrada)

Corda

    static ICollection<string> result;

    public static ICollection<string> GetAllPermutations(string str, int outputLength)
    {
        result = new List<string>();
        MakePermutations(str.ToCharArray(), string.Empty, outputLength);
        return result;
    }

    private static void MakePermutations(
       char[] possibleArray,//all chars extracted from input
       string permutation,
       int outputLength//the length of output)
    {
         if (permutation.Length < outputLength)
         {
             for (int i = 0; i < possibleArray.Length; i++)
             {
                 var tempList = possibleArray.ToList<char>();
                 tempList.RemoveAt(i);
                 MakePermutations(tempList.ToArray(), 
                      string.Concat(permutation, possibleArray[i]), outputLength);
             }
         }
         else if (!result.Contains(permutation))
            result.Add(permutation);
    }

e para Integer, basta alterar o método de chamada e MakePermutations () permanece intocado:

    public static ICollection<int> GetAllPermutations(int input, int outputLength)
    {
        result = new List<string>();
        MakePermutations(input.ToString().ToCharArray(), string.Empty, outputLength);
        return result.Select(m => int.Parse(m)).ToList<int>();
    }

exemplo 1: GetAllPermutations ("abc", 3); "abc" "acb" "bac" "bca" "cab" "cba"

exemplo 2: GetAllPermutations ("abcd", 2); "ab" "ac" "ad" "ba" "bc" "bd" "ca" "cb" "cd" "da" "db" "dc"

exemplo 3: GetAllPermutations (486,2); 48 46 84 86 64 68


Gostei da sua solução, pois é fácil de entender, obrigado por isso! No entanto, eu escolhi ir com esse: stackoverflow.com/questions/756055/… . O motivo é que ToList, ToArray e RemoveAt têm uma complexidade de tempo de O (N). Então, basicamente, você precisa revisar todos os elementos da coleção (consulte stackoverflow.com/a/15042066/1132522 ). O mesmo para o int, onde você basicamente repassa todos os elementos novamente no final para convertê-los em int. Concordo que isso não tem muito impacto para "abc" ou 486.
Andrew

2

Aqui está a função que imprimirá toda a permutação. Esta função implementa a lógica Explicada por Peter.

public class Permutation
{
    //http://www.java2s.com/Tutorial/Java/0100__Class-Definition/RecursivemethodtofindallpermutationsofaString.htm

    public static void permuteString(String beginningString, String endingString)
    {           

        if (endingString.Length <= 1)
            Console.WriteLine(beginningString + endingString);
        else
            for (int i = 0; i < endingString.Length; i++)
            {

                String newString = endingString.Substring(0, i) + endingString.Substring(i + 1);

                permuteString(beginningString + endingString.ElementAt(i), newString);

            }
    }
}

    static void Main(string[] args)
    {

        Permutation.permuteString(String.Empty, "abc");
        Console.ReadLine();

    }

2

Abaixo está a minha implementação de permutação. Não se importe com os nomes das variáveis, pois eu estava fazendo isso por diversão :)

class combinations
{
    static void Main()
    {

        string choice = "y";
        do
        {
            try
            {
                Console.WriteLine("Enter word :");
                string abc = Console.ReadLine().ToString();
                Console.WriteLine("Combinatins for word :");
                List<string> final = comb(abc);
                int count = 1;
                foreach (string s in final)
                {
                    Console.WriteLine("{0} --> {1}", count++, s);
                }
                Console.WriteLine("Do you wish to continue(y/n)?");
                choice = Console.ReadLine().ToString();
            }
            catch (Exception exc)
            {
                Console.WriteLine(exc);
            }
        } while (choice == "y" || choice == "Y");
    }

    static string swap(string test)
    {
        return swap(0, 1, test);
    }

    static List<string> comb(string test)
    {
        List<string> sec = new List<string>();
        List<string> first = new List<string>();
        if (test.Length == 1) first.Add(test);
        else if (test.Length == 2) { first.Add(test); first.Add(swap(test)); }
        else if (test.Length > 2)
        {
            sec = generateWords(test);
            foreach (string s in sec)
            {
                string init = s.Substring(0, 1);
                string restOfbody = s.Substring(1, s.Length - 1);

                List<string> third = comb(restOfbody);
                foreach (string s1 in third)
                {
                    if (!first.Contains(init + s1)) first.Add(init + s1);
                }


            }
        }

        return first;
    }

    static string ShiftBack(string abc)
    {
        char[] arr = abc.ToCharArray();
        char temp = arr[0];
        string wrd = string.Empty;
        for (int i = 1; i < arr.Length; i++)
        {
            wrd += arr[i];
        }

        wrd += temp;
        return wrd;
    }

    static List<string> generateWords(string test)
    {
        List<string> final = new List<string>();
        if (test.Length == 1)
            final.Add(test);
        else
        {
            final.Add(test);
            string holdString = test;
            while (final.Count < test.Length)
            {
                holdString = ShiftBack(holdString);
                final.Add(holdString);
            }
        }

        return final;
    }

    static string swap(int currentPosition, int targetPosition, string temp)
    {
        char[] arr = temp.ToCharArray();
        char t = arr[currentPosition];
        arr[currentPosition] = arr[targetPosition];
        arr[targetPosition] = t;
        string word = string.Empty;
        for (int i = 0; i < arr.Length; i++)
        {
            word += arr[i];

        }

        return word;

    }
}

2

Aqui está um exemplo de alto nível que escrevi que ilustra a explicação da linguagem humana que Peter deu:

    public List<string> FindPermutations(string input)
    {
        if (input.Length == 1)
            return new List<string> { input };
        var perms = new List<string>();
        foreach (var c in input)
        {
            var others = input.Remove(input.IndexOf(c), 1);
            perms.AddRange(FindPermutations(others).Select(perm => c + perm));
        }
        return perms;
    }

Essa solução é realmente falha, pois se o conjunto de cadeias contiver caracteres repetidos, ela falhará. Por exemplo, na palavra 'test', o comando Except removerá as duas instâncias de 't' em vez da primeira e da última, quando necessário.
Middas

1
@ Middas bem avistadas, felizmente, o abraço surgiu com uma solução para resolver isso.
FBryant87 7/07

1

Se desempenho e memória são um problema, sugiro esta implementação muito eficiente. De acordo com o algoritmo de Heap na Wikipedia , deve ser o mais rápido. Espero que atenda às suas necessidades :-)!

Apenas como comparação com uma implementação do Linq para 10! (código incluído):

  • Isso: 36288000 itens em 235 milissegundos
  • Linq: 36288000 itens em 50051 milissegundos

    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Runtime.CompilerServices;
    using System.Text;
    
    namespace WpfPermutations
    {
        /// <summary>
        /// EO: 2016-04-14
        /// Generator of all permutations of an array of anything.
        /// Base on Heap's Algorithm. See: https://en.wikipedia.org/wiki/Heap%27s_algorithm#cite_note-3
        /// </summary>
        public static class Permutations
        {
            /// <summary>
            /// Heap's algorithm to find all pmermutations. Non recursive, more efficient.
            /// </summary>
            /// <param name="items">Items to permute in each possible ways</param>
            /// <param name="funcExecuteAndTellIfShouldStop"></param>
            /// <returns>Return true if cancelled</returns> 
            public static bool ForAllPermutation<T>(T[] items, Func<T[], bool> funcExecuteAndTellIfShouldStop)
            {
                int countOfItem = items.Length;
    
                if (countOfItem <= 1)
                {
                    return funcExecuteAndTellIfShouldStop(items);
                }
    
                var indexes = new int[countOfItem];
                for (int i = 0; i < countOfItem; i++)
                {
                    indexes[i] = 0;
                }
    
                if (funcExecuteAndTellIfShouldStop(items))
                {
                    return true;
                }
    
                for (int i = 1; i < countOfItem;)
                {
                    if (indexes[i] < i)
                    { // On the web there is an implementation with a multiplication which should be less efficient.
                        if ((i & 1) == 1) // if (i % 2 == 1)  ... more efficient ??? At least the same.
                        {
                            Swap(ref items[i], ref items[indexes[i]]);
                        }
                        else
                        {
                            Swap(ref items[i], ref items[0]);
                        }
    
                        if (funcExecuteAndTellIfShouldStop(items))
                        {
                            return true;
                        }
    
                        indexes[i]++;
                        i = 1;
                    }
                    else
                    {
                        indexes[i++] = 0;
                    }
                }
    
                return false;
            }
    
            /// <summary>
            /// This function is to show a linq way but is far less efficient
            /// </summary>
            /// <typeparam name="T"></typeparam>
            /// <param name="list"></param>
            /// <param name="length"></param>
            /// <returns></returns>
            static IEnumerable<IEnumerable<T>> GetPermutations<T>(IEnumerable<T> list, int length)
            {
                if (length == 1) return list.Select(t => new T[] { t });
    
                return GetPermutations(list, length - 1)
                    .SelectMany(t => list.Where(e => !t.Contains(e)),
                        (t1, t2) => t1.Concat(new T[] { t2 }));
            }
    
            /// <summary>
            /// Swap 2 elements of same type
            /// </summary>
            /// <typeparam name="T"></typeparam>
            /// <param name="a"></param>
            /// <param name="b"></param>
            [MethodImpl(MethodImplOptions.AggressiveInlining)]
            static void Swap<T>(ref T a, ref T b)
            {
                T temp = a;
                a = b;
                b = temp;
            }
    
            /// <summary>
            /// Func to show how to call. It does a little test for an array of 4 items.
            /// </summary>
            public static void Test()
            {
                ForAllPermutation("123".ToCharArray(), (vals) =>
                {
                    Debug.Print(String.Join("", vals));
                    return false;
                });
    
                int[] values = new int[] { 0, 1, 2, 4 };
    
                Debug.Print("Non Linq");
                ForAllPermutation(values, (vals) =>
                {
                    Debug.Print(String.Join("", vals));
                    return false;
                });
    
                Debug.Print("Linq");
                foreach(var v in GetPermutations(values, values.Length))
                {
                    Debug.Print(String.Join("", v));
                }
    
                // Performance
                int count = 0;
    
                values = new int[10];
                for(int n = 0; n < values.Length; n++)
                {
                    values[n] = n;
                }
    
                Stopwatch stopWatch = new Stopwatch();
                stopWatch.Reset();
                stopWatch.Start();
    
                ForAllPermutation(values, (vals) =>
                {
                    foreach(var v in vals)
                    {
                        count++;
                    }
                    return false;
                });
    
                stopWatch.Stop();
                Debug.Print($"Non Linq {count} items in {stopWatch.ElapsedMilliseconds} millisecs");
    
                count = 0;
                stopWatch.Reset();
                stopWatch.Start();
    
                foreach (var vals in GetPermutations(values, values.Length))
                {
                    foreach (var v in vals)
                    {
                        count++;
                    }
                }
    
                stopWatch.Stop();
                Debug.Print($"Linq {count} items in {stopWatch.ElapsedMilliseconds} millisecs");
    
            }
        }
    }

1

Aqui está minha solução em JavaScript (NodeJS). A idéia principal é pegar um elemento de cada vez, "removê-lo" da string, variar o restante dos caracteres e inserir o elemento na frente.

function perms (string) {
  if (string.length == 0) {
    return [];
  }
  if (string.length == 1) {
    return [string];
  }
  var list = [];
  for(var i = 0; i < string.length; i++) {
    var invariant = string[i];
    var rest = string.substr(0, i) + string.substr(i + 1);
    var newPerms = perms(rest);
    for (var j = 0; j < newPerms.length; j++) {
      list.push(invariant + newPerms[j]);
    }
  }
  return list;
}

module.exports = perms;

E aqui estão os testes:

require('should');
var permutations = require('../src/perms');

describe('permutations', function () {
  it('should permute ""', function () {
    permutations('').should.eql([]);
  })

  it('should permute "1"', function () {
    permutations('1').should.eql(['1']);
  })

  it('should permute "12"', function () {
    permutations('12').should.eql(['12', '21']);
  })

  it('should permute "123"', function () {
    var expected = ['123', '132', '321', '213', '231', '312'];
    var actual = permutations('123');
    expected.forEach(function (e) {
      actual.should.containEql(e);
    })
  })

  it('should permute "1234"', function () {
    // Wolfram Alpha FTW!
    var expected = ['1234', '1243', '1324', '1342', '1423', '1432', '2134', '2143', '2314', '2341', '2413', '2431', '3124', '3142', '3214', '3241', '3412', '3421', '4123', '4132'];
    var actual = permutations('1234');
    expected.forEach(function (e) {
      actual.should.containEql(e);
    })
  })
})

1

Aqui está a solução mais simples que consigo pensar:

let rec distribute e = function
  | [] -> [[e]]
  | x::xs' as xs -> (e::xs)::[for xs in distribute e xs' -> x::xs]

let permute xs = Seq.fold (fun ps x -> List.collect (distribute x) ps) [[]] xs

A distributefunção pega um novo elemento ee uma nlista de elementos e retorna uma lista de n+1listas que cada uma foi einserida em um local diferente. Por exemplo, inserindo 10em cada um dos quatro locais possíveis na lista [1;2;3]:

> distribute 10 [1..3];;
val it : int list list =
  [[10; 1; 2; 3]; [1; 10; 2; 3]; [1; 2; 10; 3]; [1; 2; 3; 10]]

A permutefunção se dobra sobre cada elemento, distribuindo as permutações acumuladas até o momento, culminando em todas as permutações. Por exemplo, as 6 permutações da lista [1;2;3]:

> permute [1;2;3];;
val it : int list list =
  [[3; 2; 1]; [2; 3; 1]; [2; 1; 3]; [3; 1; 2]; [1; 3; 2]; [1; 2; 3]]

Mudar foldpara para a scanfim de manter os acumuladores intermediários lança alguma luz sobre como as permutações são geradas um elemento de cada vez:

> Seq.scan (fun ps x -> List.collect (distribute x) ps) [[]] [1..3];;
val it : seq<int list list> =
  seq
    [[[]]; [[1]]; [[2; 1]; [1; 2]];
     [[3; 2; 1]; [2; 3; 1]; [2; 1; 3]; [3; 1; 2]; [1; 3; 2]; [1; 2; 3]]]

1

Lista permutações de uma sequência. Evita duplicação quando os caracteres são repetidos:

using System;
using System.Collections;

class Permutation{
  static IEnumerable Permutations(string word){
    if (word == null || word.Length <= 1) {
      yield return word;
      yield break;
    }

    char firstChar = word[0];
    foreach( string subPermute in Permutations (word.Substring (1)) ) {
      int indexOfFirstChar = subPermute.IndexOf (firstChar);
      if (indexOfFirstChar == -1) indexOfFirstChar = subPermute.Length;

      for( int index = 0; index <= indexOfFirstChar; index++ )
        yield return subPermute.Insert (index, new string (firstChar, 1));
    }
  }

  static void Main(){
    foreach( var permutation in Permutations ("aab") )
      Console.WriteLine (permutation);
  }
}

2
Com tantas soluções de trabalho já presentes, você pode descrever o que faz sua solução se destacar de todas as outras soluções aqui.
Nvoigt

Evita duplicação quando os caracteres são repetidos (por chindirala para outra resposta). Para "aab": aab aba baa
Val

1

Com base na solução de @ Peter, aqui está uma versão que declara um Permutations()método simples de extensão no estilo LINQ que funciona em qualquer IEnumerable<T>.

Uso (no exemplo de caracteres de sequência):

foreach (var permutation in "abc".Permutations())
{
    Console.WriteLine(string.Join(", ", permutation));
}

Saídas:

a, b, c
a, c, b
b, a, c
b, c, a
c, b, a
c, a, b

Ou em qualquer outro tipo de coleção:

foreach (var permutation in (new[] { "Apples", "Oranges", "Pears"}).Permutations())
{
    Console.WriteLine(string.Join(", ", permutation));
}

Saídas:

Apples, Oranges, Pears
Apples, Pears, Oranges
Oranges, Apples, Pears
Oranges, Pears, Apples
Pears, Oranges, Apples
Pears, Apples, Oranges
using System;
using System.Collections.Generic;
using System.Linq;

public static class PermutationExtension
{
    public static IEnumerable<T[]> Permutations<T>(this IEnumerable<T> source)
    {
        var sourceArray = source.ToArray();
        var results = new List<T[]>();
        Permute(sourceArray, 0, sourceArray.Length - 1, results);
        return results;
    }

    private static void Swap<T>(ref T a, ref T b)
    {
        T tmp = a;
        a = b;
        b = tmp;
    }

    private static void Permute<T>(T[] elements, int recursionDepth, int maxDepth, ICollection<T[]> results)
    {
        if (recursionDepth == maxDepth)
        {
            results.Add(elements.ToArray());
            return;
        }

        for (var i = recursionDepth; i <= maxDepth; i++)
        {
            Swap(ref elements[recursionDepth], ref elements[i]);
            Permute(elements, recursionDepth + 1, maxDepth, results);
            Swap(ref elements[recursionDepth], ref elements[i]);
        }
    }
}

0

Aqui está a função que imprimirá todas as permutações recursivamente.

public void Permutations(string input, StringBuilder sb)
    {
        if (sb.Length == input.Length)
        {
            Console.WriteLine(sb.ToString());
            return;
        }

        char[] inChar = input.ToCharArray();

        for (int i = 0; i < input.Length; i++)
        {
            if (!sb.ToString().Contains(inChar[i]))
            {
                sb.Append(inChar[i]);
                Permutations(input, sb);    
                RemoveChar(sb, inChar[i]);
            }
        }
    }

private bool RemoveChar(StringBuilder input, char toRemove)
    {
        int index = input.ToString().IndexOf(toRemove);
        if (index >= 0)
        {
            input.Remove(index, 1);
            return true;
        }
        return false;
    }

0
class Permutation
{
    public static List<string> Permutate(string seed, List<string> lstsList)
    {
        loopCounter = 0;
        // string s="\w{0,2}";
        var lstStrs = PermuateRecursive(seed);

        Trace.WriteLine("Loop counter :" + loopCounter);
        return lstStrs;
    }

    // Recursive function to find permutation
    private static List<string> PermuateRecursive(string seed)
    {
        List<string> lstStrs = new List<string>();

        if (seed.Length > 2)
        {
            for (int i = 0; i < seed.Length; i++)
            {
                str = Swap(seed, 0, i);

                PermuateRecursive(str.Substring(1, str.Length - 1)).ForEach(
                    s =>
                    {
                        lstStrs.Add(str[0] + s);
                        loopCounter++;
                    });
                ;
            }
        }
        else
        {
            lstStrs.Add(seed);
            lstStrs.Add(Swap(seed, 0, 1));
        }
        return lstStrs;
    }
    //Loop counter variable to count total number of loop execution in various functions
    private static int loopCounter = 0;

    //Non recursive  version of permuation function
    public static List<string> Permutate(string seed)
    {
        loopCounter = 0;
        List<string> strList = new List<string>();
        strList.Add(seed);
        for (int i = 0; i < seed.Length; i++)
        {
            int count = strList.Count;
            for (int j = i + 1; j < seed.Length; j++)
            {
                for (int k = 0; k < count; k++)
                {
                    strList.Add(Swap(strList[k], i, j));
                    loopCounter++;
                }
            }
        }
        Trace.WriteLine("Loop counter :" + loopCounter);
        return strList;
    }

    private static string Swap(string seed, int p, int p2)
    {
        Char[] chars = seed.ToCharArray();
        char temp = chars[p2];
        chars[p2] = chars[p];
        chars[p] = temp;
        return new string(chars);
    }
}

0

Aqui está uma resposta C # que é um pouco simplificada.

public static void StringPermutationsDemo()
{
    strBldr = new StringBuilder();

    string result = Permute("ABCD".ToCharArray(), 0);
    MessageBox.Show(result);
}     

static string Permute(char[] elementsList, int startIndex)
{
    if (startIndex == elementsList.Length)
    {
        foreach (char element in elementsList)
        {
            strBldr.Append(" " + element);
        }
        strBldr.AppendLine("");
    }
    else
    {
        for (int tempIndex = startIndex; tempIndex <= elementsList.Length - 1; tempIndex++)
        {
            Swap(ref elementsList[startIndex], ref elementsList[tempIndex]);

            Permute(elementsList, (startIndex + 1));

            Swap(ref elementsList[startIndex], ref elementsList[tempIndex]);
        }
    }

    return strBldr.ToString();
}

static void Swap(ref char Char1, ref char Char2)
{
    char tempElement = Char1;
    Char1 = Char2;
    Char2 = tempElement;
}

Resultado:

1 2 3
1 3 2

2 1 3
2 3 1

3 2 1
3 1 2

0

Esta é a minha solução que é fácil para mim entender

class ClassicPermutationProblem
{
    ClassicPermutationProblem() { }

    private static void PopulatePosition<T>(List<List<T>> finalList, List<T> list, List<T> temp, int position)
    {
         foreach (T element in list)
         {
             List<T> currentTemp = temp.ToList();
             if (!currentTemp.Contains(element))
                currentTemp.Add(element);
             else
                continue;

             if (position == list.Count)
                finalList.Add(currentTemp);
             else
                PopulatePosition(finalList, list, currentTemp, position + 1);
        }
    }

    public static List<List<int>> GetPermutations(List<int> list)
    {
        List<List<int>> results = new List<List<int>>();
        PopulatePosition(results, list, new List<int>(), 1);
        return results;
     }
}

static void Main(string[] args)
{
    List<List<int>> results = ClassicPermutationProblem.GetPermutations(new List<int>() { 1, 2, 3 });
}

0

Aqui está mais uma implementação do algo mencionado.

public class Program
{
    public static void Main(string[] args)
    {
        string str = "abcefgh";
        var astr = new Permutation().GenerateFor(str);
        Console.WriteLine(astr.Length);
        foreach(var a in astr)
        {
            Console.WriteLine(a);
        }
        //a.ForEach(Console.WriteLine);
    }
}

class Permutation
{
    public string[] GenerateFor(string s)
    {  

        if(s.Length == 1)
        {

            return new []{s}; 
        }

        else if(s.Length == 2)
        {

            return new []{s[1].ToString()+s[0].ToString(),s[0].ToString()+s[1].ToString()};

        }

        var comb = new List<string>();

        foreach(var c in s)
        {

            string cStr = c.ToString();

            var sToProcess = s.Replace(cStr,"");
            if (!string.IsNullOrEmpty(sToProcess) && sToProcess.Length>0)
            {
                var conCatStr = GenerateFor(sToProcess);



                foreach(var a in conCatStr)
                {
                    comb.Add(c.ToString()+a);
                }


            }
        }
        return comb.ToArray();

    }
}

new Permutation().GenerateFor("aba")saídasstring[4] { "ab", "baa", "baa", "ab" }
Atomosk

0
    //Generic C# Method
            private static List<T[]> GetPerms<T>(T[] input, int startIndex = 0)
            {
                var perms = new List<T[]>();

                var l = input.Length - 1;

                if (l == startIndex)
                    perms.Add(input);
                else
                {

                    for (int i = startIndex; i <= l; i++)
                    {
                        var copy = input.ToArray(); //make copy

                        var temp = copy[startIndex];

                        copy[startIndex] = copy[i];
                        copy[i] = temp;

                        perms.AddRange(GetPerms(copy, startIndex + 1));

                    }
                }

                return perms;
            }

            //usages
            char[] charArray = new char[] { 'A', 'B', 'C' };
            var charPerms = GetPerms(charArray);


            string[] stringArray = new string[] { "Orange", "Mango", "Apple" };
            var stringPerms = GetPerms(stringArray);


            int[] intArray = new int[] { 1, 2, 3 };
            var intPerms = GetPerms(intArray);

Seria ótimo se você pudesse elaborar um pouco sobre como esse código funciona, em vez de deixá-lo aqui sozinho.
iBug 31/12/19

-1
    /// <summary>
    /// Print All the Permutations.
    /// </summary>
    /// <param name="inputStr">input string</param>
    /// <param name="strLength">length of the string</param>
    /// <param name="outputStr">output string</param>
    private void PrintAllPermutations(string inputStr, int strLength,string outputStr, int NumberOfChars)
    {
        //Means you have completed a permutation.
        if (outputStr.Length == NumberOfChars)
        {
            Console.WriteLine(outputStr);                
            return;
        }

        //For loop is used to print permutations starting with every character. first print all the permutations starting with a,then b, etc.
        for(int i=0 ; i< strLength; i++)
        {
            // Recursive call : for a string abc = a + perm(bc). b+ perm(ac) etc.
            PrintAllPermutations(inputStr.Remove(i, 1), strLength - 1, outputStr + inputStr.Substring(i, 1), 4);
        }
    }        
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.