0

我有这段代码创建一个 3d 数组并将 1-9 放在一个 3x3x3 框中。我需要找到一种方法来打乱这个数组的元素,以比较新打乱的数组与幻方的接近程度。任何想法表示赞赏!谢谢!

 for(i = 0; i < x; i++)
{
    cout << "Finding a Magic Square..." << endl;

    for(j = 0; j < y; j++)
    {
        cout << endl;

        for(k = 0; k < z; k++)
        {
            array3D[i][j][k] = (i+1) + (j * z) + k;
            cout << '\t' << array3D[i][j][k];
        }
    }

    cout << endl << endl;
}
4

2 回答 2

0

您可以使用std::random_shuffle(...),但必须正确使用它才能获得真正的随机排列。在 2D 数组上迭代地使用 random_shuffle 将产生每行的相关条目。

#include <algorithm>
#include <iterator>
#include <iostream>
#include <cstdlib>
#include <ctime>

int main () {
    std::srand(std::time(NULL)); // initialize random seed

    // shuffle a 2D array
    int arr[3][3] = {
        {0, 1, 2},
        {3, 4, 5},
        {6, 7, 8}
    };

    // Shuffle from the first member to the last member.
    // The array is interpreted as a 9 element 1D array.
    std::random_shuffle(&arr[0][0], &arr[2][3]);

    // print the result
    for (int row = 0; row < 3; ++row) {
        for (int col = 0; col < 3; ++col) {
            std::cout << arr[row][col] << ' ';
        }
        std::cout << std::endl;
    }
    return 0;
}

在线演示:http: //ideone.com/C4PlRs

于 2013-03-23T17:08:29.350 回答
-1

您可以使用std::random_shuffleshuffle 数组。

于 2013-03-23T16:19:26.273 回答