From 0fc3ee0e541ed0b02d9a03a55262942906c0a4e0 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 20 Jan 2014 06:56:36 +0100 Subject: some parity computations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/algorithms/bits/Bits.java | 71 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 64 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/algorithms/bits/Bits.java b/src/algorithms/bits/Bits.java index 87939f7..493e16d 100644 --- a/src/algorithms/bits/Bits.java +++ b/src/algorithms/bits/Bits.java @@ -22,27 +22,46 @@ package algorithms.bits; */ public class Bits { -£} /** * Lookup table for the number of set bits in a byte */ - private static byte[] ONES_TABLE_256 = { £(table 4 0) }; + private static byte[] ONES_TABLE_256 = { £(ones-table 4 0) }; /* ONES_TABLE_256[0] = 0; * for (int i = 0; i < 256; i++) * ONES_TABLE_256[i] = (i & 1) + ONES_TABLE_256[i / 2]; */ + + +£} + + /** + * Lookup table for the parity of the bits in a byte + */ + private static byte[] PARITY_TABLE_256 = { £(parity-table 4 0) }; £(( $S > 4 )) && + value ^= value >> 32; +£>(( $S > 2 )) && + value ^= value >> 16; +£>(( $S > 1 )) && + value ^= value >> 8; + value ^= value >> 4; + value ^= value >> 3; + value ^= value >> 2; + value ^= value >> 1; + return value & 1; + } + + /** + * Compute the parity of all bits in an integer, partial lookup table version + * + * @param value The interger + * @return The parity + */ + public static char parity_table(£{T} value) + { +£>(( $S > 4 )) && + value ^= value >> 32; +£>(( $S > 2 )) && + value ^= value >> 16; +£>(( $S > 1 )) && + value ^= value >> 8; + return PARITY_TABLE_256[rc]; + } £>done } -- cgit v1.2.3-70-g09d2