C:0&使用递归的1种组合

时间:2012-11-12 20:51:04

标签: c recursion combinations truthtable

我想列出o&组合1根据变量编号(数字)递归使用c

我想要的输出是

000
001
010
011
100
101
110
111

我尝试过最后一种算法:

void permute(unsigned number)    {

    if(number == 0) {
        printf("\n");
        return;
    }

    permute(number - 1);
        printf("0");
    permute(number - 1);
        printf("1");


}   //permute ends here


void permuteN(unsigned number) {

    unsigned i;

    for(i = 0; i < number + 1; i++){
        permute(i);
    }
}   //permuteN ends here

我认为它给了我答案但没有订购,因为我不知道放在哪里\ n;

需要你的帮助!

3 个答案:

答案 0 :(得分:5)

如果您确实只是在寻找10的组合,我建议您只需计算数字并将其列为二进制。

取二进制数字0...7并仅取最后3位(可能应用掩码),最后得到你指定的相同集合:

000
001
...
...
111

对于 n位组合,您需要执行0..2^n - 1


基于this answer一个特定情况的3位 (感谢@ChrisLutz和@dirkgently)

#include <stdio.h>
int main(){
int numdigits = 3, j;
    for(j=1; j<8; j++)
        printbits(j);
}

void printbits(unsigned char v) {
  int i;
  for(i = 2; i >= 0; i--) putchar('0' + ((v >> i) & 1));
  printf("\n");
}

<强>输出:

000
001
010
011
100
101
110
111

答案 1 :(得分:2)

你所做的只是将一个数字转换为二进制....一个简单的循环没有任何库调用(除printf之外)...

const unsigned int numbits = 3;
unsigned int bit;

for( bit = 1U << (numbits-1); bit != 0; bit >>= 1 ) {
    printf( number&bit ? "1" : "0" );
}
printf( "\n" );

编辑,因为你似乎想要递归。您需要通过某种方式指定所需的位数。你需要将它传递给你的递归例程:

#include <stdio.h>

void permute(unsigned number, unsigned bits)
{
    if( bits == 0 ) return;
    permute(number / 2, bits-1);
    printf( "%d", number % 2 );
}   //permute ends here


void permuteN(unsigned number, unsigned bits ) {

    unsigned i;

    for(i = 0; i < number + 1; i++){
        permute(i, bits);
        printf("\n");
    }
}   //permuteN ends here

int main(void)
{
    permuteN(7, 3);
    return 0;   
}

要按照您需要的顺序获取输出,您无法知道何时编写换行符。所以在这种情况下,你之后再写它。

答案 2 :(得分:0)

@paddy有一个很好的答案;只是添加了一点(就我的评论中的回答而言 - 在游戏中有点迟了)。这依赖于pow(),(和log10在印刷中的一些精确性),所以;如果使用gcc编译-lm

base在这里可能有点令人困惑 - 但猜猜你有意义。

  

gcc -Wall -Wextra -pedantic -o combo combo.c -lm

/* gcc - Wall -Wextra -pedantic  -o combo combo.c -lm */
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

static void prnt_combo(unsigned number, unsigned bits, int base)
{
    if (!bits)
        return;
    prnt_combo(number / base, --bits, base);
    printf("%d", number % base);
}


void prnt_combos(int bits, int base)
{
    int i;
    int n = pow(base, bits);
    int wp = log10(n) + 1;

    fprintf(stderr,
        "Printing all combinations of 0 to %d by width of %d numbers. "
        "Total %d.\n",
        base - 1, bits, n
    );

    for (i = 0; i < n; i++) {
        fprintf(stderr, "%*d : ", wp, i);
        prnt_combo(i, bits, base);
        printf("\n");
    }
}


/* Usage: ./combo [<bits> [<base>]]
 *        Defaults to ./combo 3 2
 * */
int main(int argc, char *argv[])
{
    int bits = argc > 1 ? strtol(argv[1], NULL, 10) : 3;
    int base = argc > 2 ? strtol(argv[2], NULL, 10) : 2;

    prnt_combos(bits, base);
    return 0;
}

样品:

$ ./combo 4 2
Printing all combinations of 0 to 1 by width of 4 numbers. Total 16.
 0 : 0000
 1 : 0001
 2 : 0010
 3 : 0011
 4 : 0100
 5 : 0101
 6 : 0110
 7 : 0111
 8 : 1000
 9 : 1001
10 : 1010
11 : 1011
12 : 1100
13 : 1101
14 : 1110
15 : 1111

clean 输出:

$ ./combo 3 2 >&2-
000
001
010
011
100
101
110
111

您可能希望添加以下内容:

if (base > 10)
    printf("%x", number % base);
else
    printf("%d", number % base);
prnt_combo()中的

。这样你就可以得到2 16:

    0 : 00
    1 : 01
    2 : 02
    3 : 03
    4 : 04
  ...
  250 : fa
  251 : fb
  252 : fc
  253 : fd
  254 : fe
  255 : ff