mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-23 20:44:39 +08:00
Add BinaryPalindromeCheck
algorithm (#5708)
This commit is contained in:
@ -0,0 +1,43 @@
|
||||
package com.thealgorithms.bitmanipulation;
|
||||
|
||||
/**
|
||||
* This class contains a method to check if the binary representation of a number is a palindrome.
|
||||
* <p>
|
||||
* A binary palindrome is a number whose binary representation is the same when read from left to right and right to left.
|
||||
* For example, the number 9 has a binary representation of 1001, which is a palindrome.
|
||||
* The number 10 has a binary representation of 1010, which is not a palindrome.
|
||||
* </p>
|
||||
*
|
||||
* @author Hardvan
|
||||
*/
|
||||
public final class BinaryPalindromeCheck {
|
||||
private BinaryPalindromeCheck() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if the binary representation of a number is a palindrome.
|
||||
*
|
||||
* @param x The number to check.
|
||||
* @return True if the binary representation is a palindrome, otherwise false.
|
||||
*/
|
||||
public static boolean isBinaryPalindrome(int x) {
|
||||
int reversed = reverseBits(x);
|
||||
return x == reversed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to reverse all the bits of an integer.
|
||||
*
|
||||
* @param x The number to reverse the bits of.
|
||||
* @return The number with reversed bits.
|
||||
*/
|
||||
private static int reverseBits(int x) {
|
||||
int result = 0;
|
||||
while (x > 0) {
|
||||
result <<= 1;
|
||||
result |= (x & 1);
|
||||
x >>= 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.thealgorithms.bitmanipulation;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BinaryPalindromeCheckTest {
|
||||
|
||||
@Test
|
||||
public void testIsBinaryPalindrome() {
|
||||
assertTrue(BinaryPalindromeCheck.isBinaryPalindrome(9)); // 1001 is a palindrome
|
||||
assertFalse(BinaryPalindromeCheck.isBinaryPalindrome(10)); // 1010 is not a palindrome
|
||||
assertTrue(BinaryPalindromeCheck.isBinaryPalindrome(0)); // 0 is a palindrome
|
||||
assertTrue(BinaryPalindromeCheck.isBinaryPalindrome(1)); // 1 is a palindrome
|
||||
assertFalse(BinaryPalindromeCheck.isBinaryPalindrome(12)); // 1100 is not a palindrome
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user