public class PermutationGenerator extends Object
() method until there are no
more permutations left. The () method returns an array of integers, which tell you the order in
which to arrange your original array of strings. Here is a snippet of code which illustrates how to use the
PermutationGenerator class.
int[] indices;
String[] elements = {"a", "b", "c", "d"};
PermutationGenerator x = new PermutationGenerator (elements.length);
StringBuffer permutation;
while (x.hasMore ()) {
permutation = new StringBuffer ();
indices = x.getNext ();
for (int i = 0; i < indices.length; i++) {
permutation.append (elements[indices[i]]);
}
System.out.println (permutation.toString ());
}
One caveat. Don't use this class on large sets. Recall that the number of permutations of a set containing n elements
is n factorial, which is a very large number even when n is as small as 20. 20! is 2,432,902,008,176,640,000.
NOTE: This class was taken from the internet, as posted by Michael Gilleland on this website. The code was posted with the following comment: "The
source code is free for you to use in whatever way you wish."| Constructor and Description |
|---|
PermutationGenerator(int n) |
public void reset()
public BigInteger getNumLeft()
public BigInteger getTotal()
public boolean hasMore()
public int[] getNext()
Copyright © 2015. All rights reserved.