Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example I have array:

int a[] = new int[]{3,4,6,2,1};

I need list of all permutations such tha if one is like this, {3,2,1,4,6}, others must not be the same. I know that if the length of the array is n then there are n! possible combinations. How can this algortihm be written?

Update: thanks, but I need a pseudo code algorithm like:

    for(int i=0;i<a.length;i++){
        // code here
    }

Just algorithm. Yes, API functions are good, but it does not help me too much.

share|improve this question
4  
There aren't 2^n possible combinations. There are n! permutations. Plus, I don't understand the question. Are you simply trying to exclude a single permutation, {3,2,1,4,6}? – Marcelo Cantos May 27 '10 at 10:34
yes sorry n! no all permutation should be unique – dato May 27 '10 at 10:36
2  
This is a homework. Isn't it? – tafa May 27 '10 at 10:39
1  
no really i am studing algorithms myself – dato May 27 '10 at 10:40

4 Answers

up vote 6 down vote accepted

If you're using C++, you can use std::next_permutation from algorithm header:

int a[] = {3,4,6,2,1};
int size = sizeof(a)/sizeof(a[0]);
std::sort(a, a+size);
do {
  // print a's elements
} while(std::next_permutation(a, a+size));
share|improve this answer

Here is an implementation of the Permutation in Java:

Permutation - Java

You should have a check on it!

Edit: code pasted below to protect against link-death:

// Permute.java -- A class generating all permutations

import java.util.Iterator;
import java.util.NoSuchElementException;
import java.lang.reflect.Array;

public class Permute implements Iterator {

   private final int size;
   private final Object [] elements;  // copy of original 0 .. size-1
   private final Object ar;           // array for output,  0 .. size-1
   private final int [] permutation;  // perm of nums 1..size, perm[0]=0

   private boolean next = true;

   // int[], double[] array won't work :-(
   public Permute (Object [] e) {
      size = e.length;
      elements = new Object [size];    // not suitable for primitives
      System.arraycopy (e, 0, elements, 0, size);
      ar = Array.newInstance (e.getClass().getComponentType(), size);
      System.arraycopy (e, 0, ar, 0, size);
      permutation = new int [size+1];
      for (int i=0; i<size+1; i++) {
         permutation [i]=i;
      }
   }

   private void formNextPermutation () {
      for (int i=0; i<size; i++) {
         // i+1 because perm[0] always = 0
         // perm[]-1 because the numbers 1..size are being permuted
         Array.set (ar, i, elements[permutation[i+1]-1]);
      }
   }

   public boolean hasNext() {
      return next;
   }

   public void remove() throws UnsupportedOperationException {
      throw new UnsupportedOperationException();
   }

   private void swap (final int i, final int j) {
      final int x = permutation[i];
      permutation[i] = permutation [j];
      permutation[j] = x;
   }

   // does not throw NoSuchElement; it wraps around!
   public Object next() throws NoSuchElementException {

      formNextPermutation ();  // copy original elements

      int i = size-1;
      while (permutation[i]>permutation[i+1]) i--;

      if (i==0) {
         next = false;
         for (int j=0; j<size+1; j++) {
            permutation [j]=j;
         }
         return ar;
      }

      int j = size;

      while (permutation[i]>permutation[j]) j--;
      swap (i,j);
      int r = size;
      int s = i+1;
      while (r>s) { swap(r,s); r--; s++; }

      return ar;
   }

   public String toString () {
      final int n = Array.getLength(ar);
      final StringBuffer sb = new StringBuffer ("[");
      for (int j=0; j<n; j++) {
         sb.append (Array.get(ar,j).toString());
         if (j<n-1) sb.append (",");
      }
      sb.append("]");
      return new String (sb);
   }

   public static void main (String [] args) {
      for (Iterator i = new Permute(args); i.hasNext(); ) {
         final String [] a = (String []) i.next();
         System.out.println (i);
      }
   }
}
share|improve this answer
3  
+1 please add the relevant code to your post though, in case the link ever goes down – BlueRaja - Danny Pflughoeft May 27 '10 at 20:30

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).

share|improve this answer

This a 2-permutation for a list wrapped in an iterator

import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

/* all permutations of two objects 
 * 
 * for ABC: AB AC BA BC CA CB
 * 
 * */
public class ListPermutation<T> implements Iterator {

    int index = 0;
    int current = 0;
    List<T> list;

    public ListPermutation(List<T> e) {
        list = e;
    }

    public boolean hasNext() {
        return !(index == list.size() - 1 && current == list.size() - 1);
    }

    public List<T> next() {
        if(current == index) {
            current++;
        }
        if (current == list.size()) {
            current = 0;
            index++;
        }
        List<T> output = new LinkedList<T>();
        output.add(list.get(index));
        output.add(list.get(current));
        current++;
        return output;
    }

    public void remove() {
    }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.