返回介绍

lcci / 16.07.Maximum / README_EN

发布于 2024-06-17 01:04:43 字数 1948 浏览 0 评论 0 收藏 0

16.07. Maximum

中文文档

Description

Write a method that finds the maximum of two numbers. You should not use if-else or any other comparison operator.

Example:


Input:  a = 1, b = 2

Output:  2

Solutions

Solution 1: Bitwise Operation

We can extract the sign bit $k$ of $a-b$. If the sign bit is $1$, it means $a \lt b$; if the sign bit is $0$, it means $a \ge b$.

Then the final result is $a \times (k \oplus 1) + b \times k$.

The time complexity is $O(1)$, and the space complexity is $O(1)$.

class Solution:
  def maximum(self, a: int, b: int) -> int:
    k = (int(((a - b) & 0xFFFFFFFFFFFFFFFF) >> 63)) & 1
    return a * (k ^ 1) + b * k
class Solution {
  public int maximum(int a, int b) {
    int k = (int) (((long) a - (long) b) >> 63) & 1;
    return a * (k ^ 1) + b * k;
  }
}
class Solution {
public:
  int maximum(int a, int b) {
    int k = ((static_cast<long long>(a) - static_cast<long long>(b)) >> 63) & 1;
    return a * (k ^ 1) + b * k;
  }
};
func maximum(a int, b int) int {
  k := (a - b) >> 63 & 1
  return a*(k^1) + b*k
}
function maximum(a: number, b: number): number {
  const k: number = Number(((BigInt(a) - BigInt(b)) >> BigInt(63)) & BigInt(1));
  return a * (k ^ 1) + b * k;
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文