Perfoming Cartesian product on arrays

前端 未结 2 1683
隐瞒了意图╮
隐瞒了意图╮ 2020-12-19 15:33

I\'m interested in performing a Cartesian product on n arrays. I can write the code if I know the number of arrays ahead of time. For example, given 2 arrays:



        
相关标签:
2条回答
  • 2020-12-19 16:16

    You can use recursion instead of iteration - but watch out - StackOverflowException may occur.

    0 讨论(0)
  • 2020-12-19 16:19

    One way to approach this problem is to continuously reduce the number of arrays one at a time by noting that

    A0 × A1 × A2 = (A0 × A1) × A2

    Consequently, you could write a function like this one, which computes the Cartesian product of two arrays:

    int[] cartesianProduct(int[] one, int[] two) {
        int[] result = new int[one.length * two.length];
        int index = 0;
    
        for (int v1: one) {
            for (int v2: two) {
                result[index] = v1 * v2;
                index++;
            }
        }
    
        return result;
    }
    

    Now, you can use this function to keep combining together pairs of arrays into one single array containing the overall Cartesian product. In pseudocode:

    While there is more than one array left:
        Remove two arrays.
        Compute their Cartesian product.
        Add that array back into the list.
    Output the last array.
    

    And, as actual Java:

    Queue<int[]> worklist;
    /* fill the worklist with your arrays; error if there are no arrays. */
    
    while (worklist.size() > 1) {
        int[] first = worklist.remove();
        int[] second = worklist.remove();
        worklist.add(cartesianProduct(first, second));
    }
    
    /* Obtain the result. */
    int[] result = worklist.remove();
    

    The problem with this approach is that it uses memory proportional to the total number of elements you produce. This can be a really huge number! If you just want to print all of the values out one at a time without storing them, there is a more efficient approach. The idea is that you can start listing off all possible combinations of indices in the different arrays, then just go multiply together the values at those positions. One way to do this is to maintain an "index array" saying what the next index to look at is. You can move from one index to the next by "incrementing" the array the same way you would increment a number. Here's some code for that:

    int[] indexArray = new int[arrays.length];
    mainLoop: while (true) {
        /* Compute this entry. */
        int result = 1;
        for (int i = 0; i < arrays.length; i++) {
            result *= arrays[i][indexArray[i]]
        }
        System.out.println(result);
    
        /* Increment the index array. */
        int index = 0;
        while (true) {
            /* See if we can bump this array index to the next value.  If so, great!
             * We're done.
             */
            indexArray[index]++;
            if (indexArray[index] < arrays[i].length) break;
    
            /* Otherwise, overflow has occurred.  If this is the very last array, we're
             * done.
             */
            indexArray[index] = 0;
            index ++;
    
            if (index == indexArray.length) break mainLoop;
        }
    }
    

    This uses only O(L) memory, where L is the number of arrays you have, but produces potentially exponentially many values.

    Hope this helps!

    0 讨论(0)
提交回复
热议问题