我正在尝试使用此代码数周。 我需要将2d数组中的行和列转换为块。 它应该适用于任何大小为n * n的矩阵。 (我已经给出了数组的大小) 例如: 这样:
int[][] input = {{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9},
{1,2,3,4,5,6,7,8,9}} ;
this is need to be the output:
{{1,2,3,1,2,3,1,2,3}
{4,5,6,4,5,6,4,5,6}
{7,8,9,7,8,9,7,8,9}
{1,2,3,1,2,3,1,2,3}
{4,5,6,4,5,6,4,5,6}
{7,8,9,7,8,9,7,8,9}
{1,2,3,1,2,3,1,2,3}
{4,5,6,4,5,6,4,5,6}
{7,8,9,7,8,9,7,8,9}}
我总是陷入困境。
这是我写的代码:
sqrtN is the size.
在上面提到的情况下,这里的sqrtN是3。
` public static int[][] blocks(int[][] matrix, int sqrtN) {
int[][] blocks = matrix;
int i = 0;
int counter = 1;
while(counter+1<sqrtN){
int n = sqrtN;//"n" will the size of the matrix.
while(n<blocks.length){
int t = counter;
int j = 0;
while(t<blocks.length){
int k = n;
if(t==counter & i%n==0 & i>0)
j= t-1;
if(j%sqrtN==0)
i = 0;
while(k==n || k%sqrtN!=0){
int temp = blocks[t][i];
blocks[t][i] = blocks[j][k];
blocks[j][k] = temp;
i= i+1;
k= k+1;
}
j=j+sqrtN;
t=t+sqrtN;
}
n= n+sqrtN;
counter= counter+1;
}
i=counter;
}
return blocks;`
我真的很高兴找到问题的答案。
谢谢你们。