1

嗨,我正在尝试构建一个循环来执行(C++)中 8 4 2 1 代码的 16 个状态

   while( condition)
   {
   double Bubble[16], Bubble1[16];
        Bubble[0] = ( a-2 - (b-2) ) + ( c-2 - (d-2)); // represents 0000
        Bubble[1] = ( a-2 - (b-2) ) + ( c-2 - (d+2)); // represents 0001
        Bubble[2] = ( a-2 - (b-2) ) + ( c+2 - (d-2)); // represents 0010
        Bubble[3] = ( a-2 - (b-2) ) + ( c+2 - (d+2)); //represents 0011
    .......
        Bubble[15] =(a+2 - (b+2) ) + ( c+2 - (d+2)); //represents 1111
  }

有没有使用 for 循环编码的简单方法?而不是每次都写气泡[]?
0 代表-2,1 代表+2。所以我有 4 个变量,每个变量都需要递增和/或递减。这可以使用 for 循环来完成吗?

感谢你的帮助

4

5 回答 5

5

我不完全确定您的代码在做什么,但您可以将其重写如下:

for (int i = 0; i < 16; i++) {
  double a_value = (i & 0x8) ? a+2 : a-2;
  double b_value = (i & 0x4) ? b+2 : b-2;
  double c_value = (i & 0x2) ? c+2 : c-2;
  double d_value = (i & 0x1) ? d+2 : d-2;
  Bubble[i] = (a_value - b_value) + (c_value - d_value);
}
于 2012-12-07T17:02:12.780 回答
2

这是一个避免分支的版本:

double Bubble[16];
for(int i = 0 ; i < 16 ; i ++)
{
    int da,db,dc,dd;
    da = ((i&8) - 4) >> 1;
    db = ((i&4) - 2);
    dc = ((i&2) - 1) << 1;
    dd = ((i&1) << 2) - 2;

    Bubble[i] = 
        ((a + da) - (b + db)) + ((c + dc) - (d + dd));
}
于 2012-12-07T17:11:16.360 回答
0

如果必须针对更多状态(位)执行此操作,那么这也是一种更通用的方法:

var varList = [a, b, c, d];  //these would be the values of a, b, c, d up to the number of states desired
for (var i=0; i<Bubble.length; i++) {
     var numBits = varList.length;
     //If the var list is not large enough, this will be an error (I will just handle it by returning)
     if (Math.pow(2, numBits) < Bubble.length) return;
     for (var j=1; j<=numBits; j++) {
         //first bit corresponds to last state
         var stateVal = varList[numBits - j];
         //if 2^bit is set, add 2, else subtract 2
         stateVal += (i % pow(2, j) === 0) ? 2 : -2;
         //add if even state, subtract if odd state
         Bubble[i] += ((numBits - j) % 2 === 0) ? stateVal : -stateVal;
     }
}
于 2012-12-07T17:46:35.850 回答
0

无需一直分支并在循环中求和所有双精度数:

double offset = a0 - b0 + c0 - d0;
for( int idx = 0; idx < sizeof(bbl)/sizeof(bbl[0]); ++idx )
{
    bbl[idx] = offset + ( (   ( 1 & ( idx >> 3 ) )
                            - ( 1 & ( idx >> 2 ) )
                            + ( 1 & ( idx >> 1 ) )
                            - ( 1 &   idx        ) ) << 2 );
}
于 2015-09-22T18:28:03.067 回答
-1

不确定是什么问题。用 for 循环遍历数组本身就很简单:

for( int i=0; i < 16; ++i )
{
    Bubble[i] = /* whatever */
}
于 2012-12-07T17:02:58.667 回答