C 语言位板国际象棋编程

发布于 2024-12-14 13:40:47 字数 780 浏览 1 评论 0原文

我在 C 语言中遇到了这段代码的问题。

#include <stdio.h>
#include <stdint.h>

typedef uint64_t bboard;

// Accessing a square of the bitboard
int
get (bboard b, int square)
{
  return (b & (1ULL << square));
}

void
print_board (bboard b)
{
  int i, j, square;
  for (i = 7; i >= 0; i--) // rank => top to bottom
    {
      for (j = 0; j < 8; j++) // file => left to right
        printf ("%d ", get (b, j+8*i) ? 1 : 0);
      printf ("\n");
    }
}

int
main ()
{
  bboard b = 0xffffffffffffffff;
  print_board (b);
}

// result that I have
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 

好的,为什么位板没有将所有位设置为 1?

如有任何问题请添加评论。泰:D

I have a problem with this piece of code in C.

#include <stdio.h>
#include <stdint.h>

typedef uint64_t bboard;

// Accessing a square of the bitboard
int
get (bboard b, int square)
{
  return (b & (1ULL << square));
}

void
print_board (bboard b)
{
  int i, j, square;
  for (i = 7; i >= 0; i--) // rank => top to bottom
    {
      for (j = 0; j < 8; j++) // file => left to right
        printf ("%d ", get (b, j+8*i) ? 1 : 0);
      printf ("\n");
    }
}

int
main ()
{
  bboard b = 0xffffffffffffffff;
  print_board (b);
}

// result that I have
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
0 0 0 0 0 0 0 0 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 
1 1 1 1 1 1 1 1 

Ok, why the bitboard is not set with all bit at 1?

For any question please add a comment. Ty :D

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

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

发布评论

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

评论(1

冰火雁神 2024-12-21 13:40:49

get 返回一个 int,但 (b & (1ULL << square)) 是一个 uint64_t 。当(b & (1ULL << square))大于INT_MAX时,结果未定义;在这种情况下,它会截断并返回 0

如果 get 返回一个 bboard ,则这将按预期工作(在此处验证: http://codepad.org/zEZiJKeR)。

get returns an int, but (b & (1ULL << square)) is a uint64_t. When (b & (1ULL << square)) is greater than INT_MAX, the result is undefined; in this case it truncates and returns 0.

If get returns a bboard instead, this works as expected (verified here: http://codepad.org/zEZiJKeR).

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