首頁 > 後端開發 > C++ > 如何在 C 中準確計算整數值的 Log2 ?

如何在 C 中準確計算整數值的 Log2 ?

Mary-Kate Olsen
發布: 2024-11-15 16:13:02
原創
498 人瀏覽過

How to Accurately Compute Log2 for Integer Values in C++?

Correct Way to Compute Log2 in C++ for Integer Values

In C++ Standard Libraries there is only the log method for floating point. However, the log method is often used to find the level of an index in a binary tree using the formula floor(2log(index)).

A common approach is to use int targetlevel = int(log(index)/log(2)). But this approach can lead to rounding errors for edge elements (elements with value 2^n), resulting in n-1.999999999999 instead of the expected n.0 being returned.

Solution for Accurate Log2 Computation

To fix this issue and ensure accurate log2 computation for integer values, a better approach is to utilize the bsr (bit scan reverse) instruction. bsr is available on x86 and x86-64 platforms and returns the position of the highest set bit in an unsigned integer. This is equivalent to log2() for positive integers.

Here's an optimized C++ code snippet that leverages the bsr instruction:

#include <stdint.h>

static inline uint32_t log2(const uint32_t x) {
  uint32_t y;
  asm ( "\tbsr %1, %0\n"
      : "=r"(y)
      : "r" (x)
  );
  return y;
}
登入後複製

This code uses inline ASM to invoke the bsr instruction efficiently and provides precise log2 computations for integers.

以上是如何在 C 中準確計算整數值的 Log2 ?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板