轻松计算和列出二进制组合

发布于 2024-10-27 20:49:29 字数 236 浏览 7 评论 0原文

我有 5 位,所以有 32 种不同的组合(它们的组合)。

从 开始

00000

到 结束

11111

是否有某种方法可以快速列出所有可能性?我可以用手做,但我担心我可能会错过一个。我猜想某个聪明的小伙子已经编写了一些算法和/或制作了一个网站,可以很容易地做到这一点。至少我希望如此。

多谢。

I have 5 bits and so 32 different combinations (of them).

Starting from

00000

and ending with

11111

Is there some way of quickly listing all possibilities? I could do it by hand, but I worry that I might miss one. I'm guessing some clever chap has written some algorithm and/or made a website, that can do this very easily. At least I hope so.

Thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

木槿暧夏七纪年 2024-11-03 20:49:29

这会将它们全部放在 Linux 的命令行上。

回显{0..1}{0..1}{0..1}{0..1}{0..1}

This will put them all on the command line on Linux.

echo {0..1}{0..1}{0..1}{0..1}{0..1}

遮云壑 2024-11-03 20:49:29

在红宝石中:

0b0000.upto(0b1111) {|n| puts n.to_s(2).rjust(4,"0")}
0000
0001
0010
0011
0100
0101
0110
0111
1000
1001
1010
1011
1100
1101
1110
1111

In Ruby:

0b0000.upto(0b1111) {|n| puts n.to_s(2).rjust(4,"0")}
0000
0001
0010
0011
0100
0101
0110
0111
1000
1001
1010
1011
1100
1101
1110
1111
べ繥欢鉨o。 2024-11-03 20:49:29

将 0 到 31 之间的整数写入一列,然后将每个整数的二进制等价并排写入第二列。

这样您将增加不错过组合的机会。

Write a column with integer from 0 to 31, then write a second column with the binary equivalent of each integer side-by-side.

That way you will increase your chance not to miss a combination.

ヅ她的身影、若隐若现 2024-11-03 20:49:29

只需从 0 数到 31 并以二进制形式输出该数字。

像这样的事情应该做:

public static String zeroPad(String str) {
    return "00000".substring(str.length()) + str;
}

public static void main(String[] args) {
    for (int i = 0; i < 32; i++)
        System.out.printf("%s%n", zeroPad(Integer.toBinaryString(i)));
}

输出:

00000
00001
00010
00011
...
11110
11111

Just count from 0 to 31 and output the digit in it's binary form.

Something like this should do:

public static String zeroPad(String str) {
    return "00000".substring(str.length()) + str;
}

public static void main(String[] args) {
    for (int i = 0; i < 32; i++)
        System.out.printf("%s%n", zeroPad(Integer.toBinaryString(i)));
}

Output:

00000
00001
00010
00011
...
11110
11111
为人所爱 2024-11-03 20:49:29

for (int i = 0; i <31; i++)
计算<< ((i & 16) >> 4) << ((i & 8) >> 3) << ((i & 4) >> 2)
<< ((i & 2) >> 1) << (i&1)<<结束;

for (int i = 0; i <31; i++)
cout << ((i & 16) >> 4) << ((i & 8) >> 3) << ((i & 4) >> 2)
<< ((i & 2) >> 1) << (i & 1) << endl;

讽刺将军 2024-11-03 20:49:29

Unix:

echo {0..1}{0..1}{0..1}{0..1} | xargs -n 1

Unix:

echo {0..1}{0..1}{0..1}{0..1} | xargs -n 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文