在静态中调用非静态方法 class - java

Calling a non-static method in a static class - java

我正在尝试编写一个代码来生成一个包含给定 int 数组的所有可能排列的列表。

我有 found online a method(下面代码中的 "nextPermutation")允许这样做,我正在尝试将其实现为基本代码,但它不起作用。

问题是,当我尝试将包含新排列的数组动态添加到列表中时,列表中已存储的所有先前排列都被新排列替换。

我想这个问题与我的 "nextPermutation" 是非静态的这一事实有某种关系,但我不知道应该如何解决它。

有什么建议吗?

package lang_dist;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class lang_dist {

    public boolean nextPermutation(int[] array) {
        // Find longest non-increasing suffix
        int i = array.length - 1;
        while (i > 0 && array[i - 1] >= array[i])
            i--;
        // Now i is the head index of the suffix


        // Are we at the last permutation already?
        if (i <= 0)
            return false;

        // Let array[i - 1] be the pivot
        // Find rightmost element that exceeds the pivot
        int j = array.length - 1;
        while (array[j] <= array[i - 1])
            j--;
        // Now the value array[j] will become the new pivot
        // Assertion: j >= i

        // Swap the pivot with j
        int temp = array[i - 1];
        array[i - 1] = array[j];
        array[j] = temp;

        // Reverse the suffix
        j = array.length - 1;
        while (i < j) {
            temp = array[i];
            array[i] = array[j];
            array[j] = temp;
            i++;
            j--;
        }

        // Successfully computed the next permutation
        return true;
    }

    public static void main( String[] args )
    {


    int[] array = {0, 0, 1, 1, 1, 1};


    List<int[]> rowList = new ArrayList<int[]>();
    List<int[]> results = new ArrayList<int[]>();

    lang_dist d=new lang_dist();

    while (d.nextPermutation(array)){

         System.out.println("Permutation:" + Arrays.toString(array));

         results = Arrays.asList(array);

         rowList.add(results.get(0));


    };

    System.out.println("---");
    for (int[] row : rowList) {
        System.out.println("Row = " + Arrays.toString(row));
    }
    }


}

(主要)问题是您在每次排列时都将结果存储在同一个数组中。因此,rowList 包含对同一个数组的 n 个引用。

要(快速)解决问题,您需要为每个排列创建一个新数组:

results = Arrays.asList(array.clone());

此外,results这里是多余的,使用rowList results来存储你的排列。

我建议你看看:Are arrays passed by value or passed by reference in Java? and Is Java "pass-by-reference" or "pass-by-value"?