Here is how you can print all permutations in 10 lines of code:
public class Permute{
static void permute(java.util.List<Integer> arr, int k){
for(int i = k; i < arr.size(); i++){
java.util.Collections.swap(arr, i, k);
permute(arr, k+1);
java.util.Collections.swap(arr, k, i);
}
if (k == arr.size() -1){
System.out.println(java.util.Arrays.toString(arr.toArray()));
}
}
public static void main(String[] args){
Permute.permute(java.util.Arrays.asList(3,4,6,2,1), 0);
}
}
You take first element of an array (k=0) and exchange it with any element (i) of the array. Then you recursively apply permutation on array starting with second element. This way you get all permutations starting with i-th element. The tricky part is that after recursive call you must swap i-th element with first element back, otherwise you could get repeated values at the first spot. By swapping it back we restore order of elements.
Extension to cover more complicated case of repeated values
Things get more interesting if you allow repeating elements in your input. For example, given input [3,3,4,4] all possible permutations (without repetitions) are
[3, 3, 4, 4]
[3, 4, 3, 4]
[3, 4, 4, 3]
[4, 3, 3, 4]
[4, 3, 4, 3]
[4, 4, 3, 3]
(if you simply apply permute function from above you will get [3,3,4,4] four times, and this is not what you naturally want to see in this case; and the number of such permutations is 4!/(2!*2!)=6)
To generate such permutations you can modify algorithm above as follows:
static void permute2(java.util.List<Integer> arr, java.util.List<Integer[]> output){
Collections.sort(arr);
__permute2(arr, 0, output);
}
static void __permute2(java.util.List<Integer> arr, int k, java.util.List<Integer[]> output){
if (k == arr.size() -1){
//System.out.println(java.util.Arrays.toString(arr.toArray()));
output.add(arr.toArray(new Integer[0]));
return;
}
if (k < arr.size()) //no swap - take care of first element
__permute2(arr, k+1, output);
int lead = arr.get(k);
for(int i = k + 1; i < arr.size(); i++){
if (arr.get(i) != lead){
lead = arr.get(i);
Collections.swap(arr, k, i);//swap with a different value
//restore sort order
int count = 0;
for(int j = i-1; j > k; j--){
if (arr.get(j + 1) < arr.get(j)){
Collections.swap(arr, j, j+1);
count++;
}
else break;
}
__permute2(arr, k+1, output);
//undo sort
for(int j = 0; j < count; j++){
Collections.swap(arr, i, i- j -1);
}
Collections.swap(arr, i, k);
}
}
}
The idea is to maintain initial sequence sorted (like 3,3,4,4,4,5,5), and use only one value from a group identical values for the swap (arr.get(i) != lead picks only non-identical values).
I verified result using
java.util.List<Integer[]> output = new LinkedList<Integer[]>();
Permute.permute2(java.util.Arrays.asList(3,3,4,4,4,5,5), output);
System.out.println(output.size());
which prints 210. Number of such permutations can be calculated as 7!/(2!*3!*2!)=210.
If you iterate over output and print out its content you will see all permutations (without repetitions).
{3,2,1,4,6}? – Marcelo Cantos May 27 '10 at 10:34