这个程序正在“计算”数组源的所有子集。我需要将结果值存储在另一个名为polje的2D字段中。如果我只是使用printf("%d %d %d ", source[i][0], source[i][1], source[i][2]);代码,代码运行良好,但是当它试图将所有内容复制到结果字段中时失败。我想我在索引数组POLJE的过程中出错了。

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char** argv) {

        int f;
        int i,j;
        int source[2][3] = {{0,3,5},{3,4,2}};
        int currentSubset = 3;
        int polje[8][3];

        for(i=0;i<8;i++){
                for(j=0;j<3;j++){
                        polje[i][j]=0;
                }}
        int tmp;
        while(currentSubset)
        {
                tmp = currentSubset;
                for( i = 0; i<3; i++)
                {
                        if (tmp & 1)
                        {
                                printf("%d %d %d ", source[i][0], source[i][1], source[i][2]); //writes out everything I want
                                polje[currentSubset][0]=source[i][0];
                                polje[currentSubset][1]=source[i][1];
                                polje[currentSubset][2]=source[i][2];
                        }
                        tmp >>= 1;
                }
                printf("\n");
                currentSubset--;
        }

        for(i=0;i<8;i++){
                for(j=0;j<3;j++){
                        printf("%d ", polje[i][j]);
                }printf("\n");}
        return (EXIT_SUCCESS);
}

输出字段应为:
0 3 5
3 4 2
3 4 2
0 0 0
0 3 5
0 0 0
0 0 0
0 0 0

但事实是:
0 3 5
3 4 2
3 4 2
0 0 0
*0 0 0*
0 0 0
0 0 0
0 0 0

最佳答案

tmp是一个只有两位的位掩码,因此内部循环应该是for ( i = 0; i < 2; i++ )
polje数组中的正确索引也是polje[currentSubset * 2 + i][0],因为subset中的每个polje包含两个空格,i都是0或1。

10-04 15:38