Compute the parity of a number using XOR and table look-up
Last Updated :
28 Aug, 2022
Parity of a number refers to whether it contains an odd or even number of 1-bits. The number has “odd parity”, if it contains odd number of 1-bits and is “even parity” if it contains even number of 1-bits.
1 --> parity of the set is odd
0 --> parity of the set is even
Examples:
Input : 254
Output : Odd Parity
Explanation : Binary of 254 is 11111110.
There are 7 ones. Thus, parity is odd.
Input : 1742346774
Output : Even
Method 1 : (Naive approach) We have already discussed this method here. Method 2 : (Efficient) Pre-requisites : Table look up, X-OR magic If we break a number S into two parts S1 and S2 such S = S1S2. If we know parity of S1 and S2, we can compute parity of S using below facts :
- If S1 and S2 have the same parity, i.e. they both have an even number of bits or an odd number of bits, their union S will have an even number of bits.
- Therefore parity of S is XOR of parities of S1 and S2
The idea is to create a look up table to store parities of all 8 bit numbers. Then compute parity of whole number by dividing it into 8 bit numbers and using above facts. Steps:
1. Create a look-up table for 8-bit numbers ( 0 to 255 )
Parity of 0 is 0.
Parity of 1 is 1.
.
.
.
Parity of 255 is 0.
2. Break the number into 8-bit chunks
while performing XOR operations.
3. Check for the result in the table for
the 8-bit number.
Since a 32 bit or 64 bit number contains constant number of bytes, the above steps take O(1) time. Example :
1. Take 32-bit number : 1742346774
2. Calculate Binary of the number :
01100111110110100001101000010110
3. Split the 32-bit binary representation into
16-bit chunks :
0110011111011010 | 0001101000010110
4. Compute X-OR :
0110011111011010
^ 0001101000010110
___________________
= 0111110111001100
5. Split the 16-bit binary representation
into 8-bit chunks : 01111101 | 11001100
6. Again, Compute X-OR :
01111101
^ 11001100
___________________
= 10110001
10110001 is 177 in decimal. Check
for its parity in look-up table :
Even number of 1 = Even parity.
Thus, Parity of 1742346774 is even.
Below is the implementation that works for both 32 bit and 64 bit numbers.
C++
// CPP program to illustrate Compute the parity of a
// number using XOR
#include <bits/stdc++.h>
// Generating the look-up table while pre-processing
#define P2(n) n, n ^ 1, n ^ 1, n
#define P4(n) P2(n), P2(n ^ 1), P2(n ^ 1), P2(n)
#define P6(n) P4(n), P4(n ^ 1), P4(n ^ 1), P4(n)
#define LOOK_UP P6(0), P6(1), P6(1), P6(0)
// LOOK_UP is the macro expansion to generate the table
unsigned int table[256] = { LOOK_UP };
// Function to find the parity
int Parity(int num)
{
// Number is considered to be of 32 bits
int max = 16;
// Dividing the number into 8-bit
// chunks while performing X-OR
while (max >= 8) {
num = num ^ (num >> max);
max = max / 2;
}
// Masking the number with 0xff (11111111)
// to produce valid 8-bit result
return table[num & 0xff];
}
// Driver code
int main()
{
unsigned int num = 1742346774;
// Result is 1 for odd parity, 0 for even parity
bool result = Parity(num);
// Printing the desired result
result ? std::cout << "Odd Parity" :
std::cout << "Even Parity";
return 0;
}
Java
// Java program to illustrate Compute the
// parity of a number using XOR
import java.util.ArrayList;
class GFG {
// LOOK_UP is the macro expansion to
// generate the table
static ArrayList<Integer> table = new ArrayList<Integer>();
// Generating the look-up table while
// pre-processing
static void P2(int n)
{
table.add(n);
table.add(n ^ 1);
table.add(n ^ 1);
table.add(n);
}
static void P4(int n)
{
P2(n);
P2(n ^ 1);
P2(n ^ 1);
P2(n);
}
static void P6(int n)
{
P4(n);
P4(n ^ 1);
P4(n ^ 1);
P4(n) ;
}
static void LOOK_UP()
{
P6(0);
P6(1);
P6(1);
P6(0);
}
// Function to find the parity
static int Parity(int num)
{
// Number is considered to be
// of 32 bits
int max = 16;
// Dividing the number o 8-bit
// chunks while performing X-OR
while (max >= 8)
{
num = num ^ (num >> max);
max = (max / 2);
}
// Masking the number with 0xff (11111111)
// to produce valid 8-bit result
return table.get(num & 0xff);
}
public static void main(String[] args) {
// Driver code
int num = 1742346774;
LOOK_UP();
//Function call
int result = Parity(num);
// Result is 1 for odd parity,
// 0 for even parity
if (result != 0)
System.out.println("Odd Parity");
else
System.out.println("Even Parity");
}
}
//This code is contributed by phasing17
Python3
# Python3 program to illustrate Compute the
# parity of a number using XOR
# Generating the look-up table while
# pre-processing
def P2(n, table):
table.extend([n, n ^ 1, n ^ 1, n])
def P4(n, table):
return (P2(n, table), P2(n ^ 1, table),
P2(n ^ 1, table), P2(n, table))
def P6(n, table):
return (P4(n, table), P4(n ^ 1, table),
P4(n ^ 1, table), P4(n, table))
def LOOK_UP(table):
return (P6(0, table), P6(1, table),
P6(1, table), P6(0, table))
# LOOK_UP is the macro expansion to
# generate the table
table = [0] * 256
LOOK_UP(table)
# Function to find the parity
def Parity(num) :
# Number is considered to be
# of 32 bits
max = 16
# Dividing the number o 8-bit
# chunks while performing X-OR
while (max >= 8):
num = num ^ (num >> max)
max = max // 2
# Masking the number with 0xff (11111111)
# to produce valid 8-bit result
return table[num & 0xff]
# Driver code
if __name__ =="__main__":
num = 1742346774
# Result is 1 for odd parity,
# 0 for even parity
result = Parity(num)
print("Odd Parity") if result else print("Even Parity")
# This code is contributed by
# Shubham Singh(SHUBHAMSINGH10)
C#
// C# program to illustrate Compute the
// parity of a number using XOR
using System;
using System.Collections.Generic;
class GFG {
// LOOK_UP is the macro expansion to
// generate the table
static List<int> table = new List<int>();
// Generating the look-up table while
// pre-processing
static void P2(int n)
{
table.Add(n);
table.Add(n ^ 1);
table.Add(n ^ 1);
table.Add(n);
}
static void P4(int n)
{
P2(n);
P2(n ^ 1);
P2(n ^ 1);
P2(n);
}
static void P6(int n)
{
P4(n);
P4(n ^ 1);
P4(n ^ 1);
P4(n);
}
static void LOOK_UP()
{
P6(0);
P6(1);
P6(1);
P6(0);
}
// Function to find the parity
static int Parity(int num)
{
// Number is considered to be
// of 32 bits
int max = 16;
// Dividing the number o 8-bit
// chunks while performing X-OR
while (max >= 8) {
num = num ^ (num >> max);
max = (max / 2);
}
// Masking the number with 0xff (11111111)
// to produce valid 8-bit result
return table[num & 0xff];
}
public static void Main(string[] args)
{
// Driver code
int num = 1742346774;
LOOK_UP();
// Function call
int result = Parity(num);
// Result is 1 for odd parity,
// 0 for even parity
if (result != 0)
Console.WriteLine("Odd Parity");
else
Console.WriteLine("Even Parity");
}
}
// This code is contributed by phasing17
PHP
<?php
// PHP program to illustrate
// Compute the parity of a
// number using XOR
/* Generating the look-up
table while pre-processing
#define P2(n) n, n ^ 1, n ^ 1, n
#define P4(n) P2(n), P2(n ^ 1),
P2(n ^ 1), P2(n)
#define P6(n) P4(n), P4(n ^ 1),
P4(n ^ 1), P4(n)
#define LOOK_UP P6(0), P6(1),
P6(1), P6(0)
LOOK_UP is the macro expansion
to generate the table
$table = array(LOOK_UP );
*/
// Function to find
// the parity
function Parity($num)
{
global $table;
// Number is considered
// to be of 32 bits
$max = 16;
// Dividing the number
// into 8-bit chunks
// while performing X-OR
while ($max >= 8)
{
$num = $num ^ ($num >> $max);
$max = (int)$max / 2;
}
// Masking the number with
// 0xff (11111111) to produce
// valid 8-bit result
return $table[$num & 0xff];
}
// Driver code
$num = 1742346774;
// Result is 1 for odd
// parity, 0 for even parity
$result = Parity($num);
// Printing the desired result
if($result == true)
echo "Odd Parity" ;
else
echo"Even Parity";
// This code is contributed by ajit
?>
JavaScript
//JavaScript program to illustrate Compute the
// parity of a number using XOR
// Generating the look-up table while
// pre-processing
function P2(n, table)
{
table.push(n, n ^ 1, n ^ 1, n);
}
function P4(n, table)
{
return (P2(n, table), P2(n ^ 1, table),
P2(n ^ 1, table), P2(n, table));
}
function P6(n, table)
{
return (P4(n, table), P4(n ^ 1, table),
P4(n ^ 1, table), P4(n, table)) ;
}
function LOOK_UP(table)
{
return (P6(0, table), P6(1, table),
P6(1, table), P6(0, table));
}
// LOOK_UP is the macro expansion to
// generate the table
var table = new Array(256).fill(0);
LOOK_UP(table);
// Function to find the parity
function Parity(num)
{
// Number is considered to be
// of 32 bits
var max = 16;
// Dividing the number o 8-bit
// chunks while performing X-OR
while (max >= 8)
{
num = num ^ (num >> max);
max = Math.floor(max / 2);
}
// Masking the number with 0xff (11111111)
// to produce valid 8-bit result
return table[num & 0xff] ;
}
// Driver code
var num = 1742346774;
//Function call
var result = Parity(num);
// Result is 1 for odd parity,
// 0 for even parity
console.log(result ? "Odd Parity" : "Even Parity");
// This code is contributed by phasing17
Output:
Even Parity
Time Complexity : O(1). Note that a 32 bit or 64 bit number has fixed number of bytes (4 in case of 32 bits and 8 in case of 64 bits).
Auxiliary Space: O(1)
Similar Reads
Basics & Prerequisites
Data Structures
Array Data StructureIn this article, we introduce array, implementation in different popular languages, its basic operations and commonly seen problems / interview questions. An array stores items (in case of C/C++ and Java Primitive Arrays) or their references (in case of Python, JS, Java Non-Primitive) at contiguous
3 min read
String in Data StructureA string is a sequence of characters. The following facts make string an interesting data structure.Small set of elements. Unlike normal array, strings typically have smaller set of items. For example, lowercase English alphabet has only 26 characters. ASCII has only 256 characters.Strings are immut
2 min read
Hashing in Data StructureHashing is a technique used in data structures that efficiently stores and retrieves data in a way that allows for quick access. Hashing involves mapping data to a specific index in a hash table (an array of items) using a hash function. It enables fast retrieval of information based on its key. The
2 min read
Linked List Data StructureA linked list is a fundamental data structure in computer science. It mainly allows efficient insertion and deletion operations compared to arrays. Like arrays, it is also used to implement other data structures like stack, queue and deque. Hereâs the comparison of Linked List vs Arrays Linked List:
2 min read
Stack Data StructureA Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). LIFO implies that the element that is inserted last, comes out first and FILO implies that the element that is inserted first
2 min read
Queue Data StructureA Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of "First in, First out" (FIFO), where the first element added to the queue is the first one to be removed. It is used as a buffer in computer systems
2 min read
Tree Data StructureTree Data Structure is a non-linear data structure in which a collection of elements known as nodes are connected to each other via edges such that there exists exactly one path between any two nodes. Types of TreeBinary Tree : Every node has at most two childrenTernary Tree : Every node has at most
4 min read
Graph Data StructureGraph Data Structure is a collection of nodes connected by edges. It's used to represent relationships between different entities. If you are looking for topic-wise list of problems on different topics like DFS, BFS, Topological Sort, Shortest Path, etc., please refer to Graph Algorithms. Basics of
3 min read
Trie Data StructureThe Trie data structure is a tree-like structure used for storing a dynamic set of strings. It allows for efficient retrieval and storage of keys, making it highly effective in handling large datasets. Trie supports operations such as insertion, search, deletion of keys, and prefix searches. In this
15+ min read
Algorithms
Searching AlgorithmsSearching algorithms are essential tools in computer science used to locate specific items within a collection of data. In this tutorial, we are mainly going to focus upon searching in an array. When we search an item in an array, there are two most common algorithms used based on the type of input
2 min read
Sorting AlgorithmsA Sorting Algorithm is used to rearrange a given array or list of elements in an order. For example, a given array [10, 20, 5, 2] becomes [2, 5, 10, 20] after sorting in increasing order and becomes [20, 10, 5, 2] after sorting in decreasing order. There exist different sorting algorithms for differ
3 min read
Introduction to RecursionThe process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution
14 min read
Greedy AlgorithmsGreedy algorithms are a class of algorithms that make locally optimal choices at each step with the hope of finding a global optimum solution. At every step of the algorithm, we make a choice that looks the best at the moment. To make the choice, we sometimes sort the array so that we can always get
3 min read
Graph AlgorithmsGraph is a non-linear data structure like tree data structure. The limitation of tree is, it can only represent hierarchical data. For situations where nodes or vertices are randomly connected with each other other, we use Graph. Example situations where we use graph data structure are, a social net
3 min read
Dynamic Programming or DPDynamic Programming is an algorithmic technique with the following properties.It is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for the same inputs, we can optimize it using Dynamic Programming. The idea is to simply store the results of
3 min read
Bitwise AlgorithmsBitwise algorithms in Data Structures and Algorithms (DSA) involve manipulating individual bits of binary representations of numbers to perform operations efficiently. These algorithms utilize bitwise operators like AND, OR, XOR, NOT, Left Shift, and Right Shift.BasicsIntroduction to Bitwise Algorit
4 min read
Advanced
Segment TreeSegment Tree is a data structure that allows efficient querying and updating of intervals or segments of an array. It is particularly useful for problems involving range queries, such as finding the sum, minimum, maximum, or any other operation over a specific range of elements in an array. The tree
3 min read
Pattern SearchingPattern searching algorithms are essential tools in computer science and data processing. These algorithms are designed to efficiently find a particular pattern within a larger set of data. Patten SearchingImportant Pattern Searching Algorithms:Naive String Matching : A Simple Algorithm that works i
2 min read
GeometryGeometry is a branch of mathematics that studies the properties, measurements, and relationships of points, lines, angles, surfaces, and solids. From basic lines and angles to complex structures, it helps us understand the world around us.Geometry for Students and BeginnersThis section covers key br
2 min read
Interview Preparation
Practice Problem