C#程序判断一个否是否是二的幂
给定一个正整数,编写一个函数来判断它是否是 2 的幂。
例子 :
Input : n = 4
Output : Yes
22 = 4
Input : n = 7
Output : No
Input : n = 32
Output : Yes
25 = 32
1.一个简单的方法是简单地取以 2 为底的数字的对数,如果你得到一个整数,那么数字就是 2 的幂。
C#
// C# Program to find whether
// a no is power of two
using System;
class GFG {
/* Function to check if
x is power of 2*/
static bool isPowerOfTwo(int n)
{
return (int)(Math.Ceiling((Math.Log(n) / Math.Log(2))))
== (int)(Math.Floor(((Math.Log(n) / Math.Log(2)))));
}
// Driver Code
public static void Main()
{
if (isPowerOfTwo(31))
Console.WriteLine("Yes");
else
Console.WriteLine("No");
if (isPowerOfTwo(64))
Console.WriteLine("Yes");
else
Console.WriteLine("No");
}
}
// This code is contributed
// by Akanksha Rai(Abby_akku)
C#
// C# program to find whether
// a no is power of two
using System;
class GFG {
// Function to check if
// x is power of 2
static bool isPowerOfTwo(int n)
{
if (n == 0)
return false;
while (n != 1) {
if (n % 2 != 0)
return false;
n = n / 2;
}
return true;
}
// Driver program
public static void Main()
{
Console.WriteLine(isPowerOfTwo(31) ? "Yes" : "No");
Console.WriteLine(isPowerOfTwo(64) ? "Yes" : "No");
}
}
// This code is contributed by Sam007
C#
// C# program to efficiently
// check for power for 2
using System;
class GFG {
// Method to check if x is power of 2
static bool isPowerOfTwo(int x)
{
// First x in the below expression
// is for the case when x is 0
return x != 0 && ((x & (x - 1)) == 0);
}
// Driver method
public static void Main()
{
Console.WriteLine(isPowerOfTwo(31) ? "Yes" : "No");
Console.WriteLine(isPowerOfTwo(64) ? "Yes" : "No");
}
}
// This code is contributed by Sam007
输出:
No
Yes
时间复杂度: O(log 2 n)
辅助空间: O(1)
2.另一种解决方案是不断将数字除以 2,即迭代地执行 n = n/2。在任何迭代中,如果 n%2 变为非零且 n 不是 1,则 n 不是 2 的幂。如果 n 变为 1,则它是 2 的幂。
C#
// C# program to find whether
// a no is power of two
using System;
class GFG {
// Function to check if
// x is power of 2
static bool isPowerOfTwo(int n)
{
if (n == 0)
return false;
while (n != 1) {
if (n % 2 != 0)
return false;
n = n / 2;
}
return true;
}
// Driver program
public static void Main()
{
Console.WriteLine(isPowerOfTwo(31) ? "Yes" : "No");
Console.WriteLine(isPowerOfTwo(64) ? "Yes" : "No");
}
}
// This code is contributed by Sam007
输出:
No
Yes
3.两个数的所有幂都只有一个位集。所以数数。设置位的数量,如果您得到 1,则数字是 2 的幂。请参阅以整数计数设置位以计算设置位。
4.如果我们将 2 的幂减 1,则唯一设置位之后的所有未设置位都将被设置;设置位变为未设置。
例如对于 4 ( 100) 和 16(10000),我们在减去 1 后得到以下结果
3 –> 011
15 –> 01111
因此,如果数字 n 是 2 的幂,则 n 和 n-1 的按位 & 将为零。我们可以说 n 是 2 的幂或不是基于 n&(n-1) 的值。当 n 为 0 时,表达式 n&(n-1) 将不起作用。为了处理这种情况,我们的表达式将变为 n& (!n&(n-1)) (感谢 https://www.geeksforgeeks.org/program - 查找是否不属于二的幂/穆罕默德添加这个案例)。
下面是这个方法的实现。
C#
// C# program to efficiently
// check for power for 2
using System;
class GFG {
// Method to check if x is power of 2
static bool isPowerOfTwo(int x)
{
// First x in the below expression
// is for the case when x is 0
return x != 0 && ((x & (x - 1)) == 0);
}
// Driver method
public static void Main()
{
Console.WriteLine(isPowerOfTwo(31) ? "Yes" : "No");
Console.WriteLine(isPowerOfTwo(64) ? "Yes" : "No");
}
}
// This code is contributed by Sam007
输出:
No
Yes
有关详细信息,请参阅有关程序的完整文章以查找否是否是二的幂!