forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerOfFour.java
More file actions
36 lines (34 loc) · 1.29 KB
/
PowerOfFour.java
File metadata and controls
36 lines (34 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.thealgorithms.maths;
/**
* Utility class for checking if a number is a power of four.
* A power of four is a number that can be expressed as 4^n where n is a non-negative integer.
* This class provides a method to determine if a given integer is a power of four using bit manipulation.
*
* @author krishna-medapati (https://github.com/krishna-medapati)
*/
public final class PowerOfFour {
private PowerOfFour() {
}
/**
* Checks if the given integer is a power of four.
*
* A number is considered a power of four if:
* 1. It is greater than zero
* 2. It has exactly one '1' bit in its binary representation (power of two)
* 3. The '1' bit is at an even position (0, 2, 4, 6, ...)
*
* The method uses the mask 0x55555555 (binary: 01010101010101010101010101010101)
* to check if the set bit is at an even position.
*
* @param number the integer to check
* @return true if the number is a power of four, false otherwise
*/
public static boolean isPowerOfFour(int number) {
if (number <= 0) {
return false;
}
boolean isPowerOfTwo = (number & (number - 1)) == 0;
boolean hasEvenBitPosition = (number & 0x55555555) != 0;
return isPowerOfTwo && hasEvenBitPosition;
}
}