C 将 int 转换为位移运算符

发布于 2024-12-02 19:49:48 字数 453 浏览 0 评论 0原文

我只能使用这些符号:

! 〜& ^ | + << >>>

这是我需要实现的表格:

input | output
--------------
0     |   0
1     |   8
2     |   16
3     |   24

对于输出,我将左移一个 32 位 int。

前任。

int main()
{
   int myInt = 0xFFFFFFFF;
   myInt = (x << (myFunction(2)));

  //OUTPUT = 0xFFFF0000
}

int myFunction(int input)
{ 
   // Do some magic conversions here
}

有什么想法吗????

I can only use these symbols:

! ~ & ^ | + << >>

Here is the table I need to achieve:

input | output
--------------
0     |   0
1     |   8
2     |   16
3     |   24

With the output I am going to left shift a 32 bit int over.

Ex.

int main()
{
   int myInt = 0xFFFFFFFF;
   myInt = (x << (myFunction(2)));

  //OUTPUT = 0xFFFF0000
}

int myFunction(int input)
{ 
   // Do some magic conversions here
}

any ideas????

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

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

发布评论

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

评论(1

怎言笑 2024-12-09 19:49:48

好吧,如果您想要一个具有 f(0) = 0f(1) = 8f(3) = 24 的函数,并且依此类推,您必须实现f(x) = x * 8。由于 8 是 2 的完美幂,因此可以用移位代替乘法。因此:

int myFunction(int input)
{
    return input << 3;
}

仅此而已。

Well, if you want a function with f(0) = 0, f(1) = 8, f(3) = 24 and so on then you'll have to implement f(x) = x * 8. Since 8 is a perfect power of two the multiplication can be replaced by shifting. Thus:

int myFunction(int input)
{
    return input << 3;
}

That's all.

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