我编写的代码采用数组的元素并遍历数组以给出所有排列。但我需要它只显示一定数量的排列:
最终代码仅给出 9 个元素的 6 个排列(换句话说,打印总共 362880 个输出的前 60480 个排列)。为简单起见,我使用数组中的 4 个元素,并打印出所有 24 个排列。但我需要代码适用于任意数量的排列。例如,如果我需要它打印出 1-permutation,代码应该打印前 4 个排列 - ABCD、ABDC、ACBD 和 ACDB。我不确定如何解决这个问题。
public static void main(String[] args) {
// TODO Auto-generated method stub
String[] myArray = {"A","B","C", "D"};
int size = myArray.length;
permutation(myArray, 0, size-1);
// Calculate Permutations
int n=size;
int r=6; // subject to change
int p = n - r;
int total=1;
int total2=1;
int total3=0;
for (int top=n; top>0; top--)
{
total *= top;
}
if ((n-r<0))
{
System.out.println("r value cannot be greater than array size");
total3=0;
}
else
{
for (int bot=1; bot<=p; bot++)
{
if (p==0) // should be -- else if (p==0) -- after correction
{
total2=1;
}
else
{
total2 *= bot;
}
}
total3 = total/total2;
}
System.out.printf("%d permutations of %d elements = %d\n",r,n,total3);
// end calculation
}
// end main
// print array
public static void prtArray(String[] myArray, int size)
{
for(int i=0; i<size; i++)
{
System.out.printf("%s", myArray[i]);
}
System.out.println();
}
// swap elements
public static void swap(String[] myArray, int i, int j) {
String temp;
temp = myArray[i];
myArray[i]=myArray[j];
myArray[j]=temp;
}
// permutation
private static void permutation(String[] myArray, int b, int e)
{
if (b == e)
prtArray(myArray, e+1); // accounts for array of size 1
else
{
for(int i = b; i <= e; i++)
{
swap(myArray, i, b);
permutation(myArray, b+1, e);
swap(myArray, i, b);
}
}
}
}
慕标5832272
相关分类