Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how to write a permutation in Java when the start and end can very per digit?

For example, for three digits from 1 to 3 it should produce the output {1,1,1} {1,1,2} {1,1,3} {1,2,1} {1,2,2} {1,2,3} {1,3,1} {1,3,2} {1,3,3} {2,1,1} {2,1,2} {2,1,3} {2,2,1} {2,2,2} {2,2,3} {2,3,1} {2,3,2} {2,3,3} {3,1,1} {3,1,2} {3,1,3} {3,2,1} {3,2,2} {3,2,3} {3,3,1} {3,3,2} {3,3,3} but the ranges for the digits could as well be from 1 to 5 for the first, from 1 to 8 for the second and from 1 to 3 for the third.

share|improve this question
6  
1  
I'm tempted to answer just "Yes." – ZeroOne Jun 9 '12 at 21:16

closed as not a real question by Hovercraft Full Of Eels, Jim Garrison, woodchips, WATTO Studios, Mikko Maunu Jun 10 '12 at 7:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try this:

import java.util.Random;

public class Permutation {
public static int permutation(int[] mins, int[] maxes) {
    int result = 0;
    if(mins==null || maxes == null || mins.length != maxes.length) {
        throw new RuntimeException("Fail.");
    }
    Random rng = new Random();
    int maxIndex = maxes.length-1;
    for (int i = maxIndex; i >=0; i--) {
        int curMin = mins[i];
        int curMax = maxes[i];
        int num = curMin + Math.round(rng.nextFloat() * (float)(curMax-curMin));
        result += num * Math.pow(10,maxIndex-i);
    }

    return result;
}

public static void main(String[] args) {
    final int[] minimums = {1,1,1};
    final int[] maximums = {5,8,3};
    System.out.println(Permutation.permutation(minimums, maximums));
}
}
share|improve this answer
Thanks for the response. It should actually produce these results though for 1-3 for all min/max. {1,1,1} {1,1,2} {1,1,3} {1,2,1} {1,2,2} {1,2,3} {1,3,1} {1,3,2} {1,3,3} {2,1,1} {2,1,2} {2,1,3} {2,2,1} {2,2,2} {2,2,3} {2,3,1} {2,3,2} {2,3,3} {3,1,1} {3,1,2} {3,1,3} {3,2,1} {3,2,2} {3,2,3} {3,3,1} {3,3,2} {3,3,3} – Kevin Jun 9 '12 at 21:40
@Kevin Oh, I see now. Well, like Hovercraft Full Of Eels already asked, what have you tried? Stack Overflow really isn't a "code for free" site, you should show that you've at least tried to solve the problem by yourself. Please edit the question accordingly; like I said, the answer to the question in its current form is just "Yes", but I doubt that's what you are looking for. Please ask something more specific. – ZeroOne Jun 9 '12 at 21:48

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