首頁 > 後端開發 > C++ > 主體

設定最左邊未設定的位

WBOY
發布: 2023-09-10 17:05:02
轉載
1144 人瀏覽過

設定最左邊未設定的位

本文旨在尋找一種設定給定數字最左邊未設定位的方法。在最高位設定位之後的第一個未設定位被視為最左邊的未設定位。

問題陳述

給定一個數字n,任務是將該數字的二進位展開中未設定的最左邊的位元設為1。所有其他位元應保持不變。如果原始數字的所有位元都已設置,則傳回該數字。

Examples

Input: 46
登入後複製
Output: 62
登入後複製

Explanation

的中文翻譯為:

解釋

Binary Expansion of 46 = 101110.

最左邊未設定的位元是 101110。

Upon setting the underlined bit we get, 111110. This is the binary expansion of 62.

Hence answer is 62.

Input: 11
登入後複製
Output: 15
登入後複製

Explanation

的中文翻譯為:

解釋

Binary Expansion of 11 = 1011.

最左邊未設定的位元是 1011。

Upon changing the underlined bit, we get 1111 which is the binary expansion of 15.

Input: 30
登入後複製
Output: 31
登入後複製

Explanation

的中文翻譯為:

解釋

Binary Expansion of 30 = 11110.

最左側未設定的位元為 11110。

在設定最左邊未設定的位元時,我們得到11111,這是31的二進位展開。

Input: 7
登入後複製
Output: 7
登入後複製

Explanation

的中文翻譯為:

解釋

Binary Expansion of 7 = 111.

由於所有位都被設定了,沒有最左邊未設定的位。因此答案與原始數字保持不變。

解決方案方法

  • 檢查是否所有的位元都被設定。如果是,則傳回原始數字作為答案。

  • Find the position of the latest unset bit using bitwise AND operator, and update the counter.

  • #將位元設定為與計數器相對應。

  • 顯示答案。

查找是否所有位元都被設定

The idea here is that by adding one bit, the input number will become a perfect square of 2 if all of its bits are set. Hence, the following expression will determine whether or not all the bits of the following expression will determine whether or not all the bits of the number n & (n 1) == 0;

Let us understand this through an example.

Let the number be 5. We need to check if all the bits of 5 are set or not.

的中文翻譯為:
n = 3 n 1 = 4 n & (n 1)
011
#011 100 000

Thus it is safe to conclude that all the bits of n are already set and we return the number as it is.

找到最左边未设置的位

如果AND操作的输出不等于零,则继续查找最左边未设置的位。首先生成一个位数与给定整数相等的数字。新数字的最左边位最初设置为1。

然后,我们运行一个循环,从最左边的1位开始,向右搜索第一个0,通过对给定数字和新数字进行位与运算来实现。当位与运算的结果为0时,我们返回第一个未设置的最左边位的位置pos。

To Set the Leftmost Unset Bit

Generate a new number in which only the bit corresponding to pos is set. Perform bitwise OR operation between this new number and the original number.

Algorithm

的中文翻译为:

算法

Function all_bits_set()

  • 计算 n & (n + 1)。

  • If result == 0, return true.

  • 否则返回 false。

Function find_leftmost_unset_bit()

  • Initialize m = 1, pos = 0.

  • while (n > m)

    • 左移 m 1 位

  • 将 m 右移 1 位,以使其对应于 n 的最高有效位。

  • while ((n & m) != 0)

    • 将 m 右移 1 位

    • pos++

  • 一旦循环中断,我们就可以得到最高有效位(MSB)中最左边未设置的位的位置。

  • 返回 log2(n) - pos,即从最低有效位开始的位位置。

函数 set_leftmost_unset_bit()

  • 初始化 k = 1

  • Function Call find_leftmost_unset_bit().

  • k = k << pos

  • Compute n | k.

  • Update n.

Function main()

  • 初始化 n

  • Function Call all_bits_set()

  • 函数调用 find_leftmost_unset_bit()

  • 调用函数set_leftmost_unset_bit()

  • 显示 n

示例:C++程序

这个程序通过将输入数字 n 的二进制展开中最左边未设置的位设置为 1 来修改它。它使用位运算符 OR,左移和右移运算符以及位与运算符来实现其目标。

// A C++ program to set the left most unset bit of a number. If all the bits of the given number are already set, it returns the number as it is.
#include <iostream>
#include <cmath>
using namespace std;
// function to check if all bits of the given number are already set
// if all bits of n are set, n + 1 will be a power of 2.
bool all_bits_set(int n){
   if ((n & (n + 1)) == 0)    {
      return true;
   }
   return false;
}

// function to find the position of the leftmost unset bit from the LSB.
int find_leftmost_unset_bit(int n){
   int m = 1, pos = 0;
   while (n > m){
      m = m << 1;
   }
   m = m >> 1; // to make the number of digits in m equal to number of digits in n
   
   // the following loop executes till the first zero is encountered, starting from the msb
   while ((n & m) != 0){
      m = m >> 1;
      pos++;
   }
   
   // since pos is the position of the unset bit from the MSB we return log2(n) - pos which is the location of the leftmost unset bit from the LSB.
   return log2(n) - pos;
}

// function to set the leftmost unset bit from the LSB.
void set_leftmost_unset_bit(int &n){
   int k = 1;
   int pos = find_leftmost_unset_bit(n);
   k = k << (pos); // left shift k by pos
   n = n | k; // to set the leftmost unset bit
}

// main function
int main(){
   int n = 46;
   cout << "Input Number: "<< n << endl;
   if (all_bits_set(n))    {
      cout << n << endl;
      return 0;
   }
   set_leftmost_unset_bit(n);
   cout << "Number after setting the Leftmost Unset Bit: " << n << endl; // display the updated number
   return 0;
}
登入後複製

输出

Input Number: 46
Number after setting the Leftmost Unset Bit: 62
登入後複製

时间和空间分析

时间复杂度:O(log2(n)),因为在函数find_leftmost_unset_bit()中,我们可能需要遍历二进制展开式的所有log2(n)位数来找到最左边的未设置位。

Space Complexity: O(1), as constant space is always used in the implementation.

Conclusion

本文讨论了一种寻找并设置给定数字最左边未设置位的方法。如果数字的所有位已经设置,我们将返回该数字。否则,为了设置该位,我们使用位左移和右移运算符生成一个新的位模式,并使用位或运算符计算结果。解决方案的概念、多个示例、使用的算法、C++程序解决方案以及时间和空间复杂度分析都被详细解释,以便更深入地理解。

以上是設定最左邊未設定的位的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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