Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Table of contents
1.
Introduction
2.
What is Bitwise XOR?
3.
How does bitwise ^ (XOR) work?
3.1.
C
4.
XOR Table
4.1.
Example
4.2.
C
4.3.
C++
5.
XOR with Negative Numbers
5.1.
Example :
5.2.
C
5.3.
C++
6.
How XOR Operation Works with Negative Numbers
6.1.
Example :
6.2.
C
6.3.
C++
7.
How XOR Operation Works with Positive and Negative Numbers
7.1.
Example :
7.2.
C
7.3.
C++
8.
Some Interesting Use Cases of XOR Operator
8.1.
Examples (Swapping Values):
8.2.
C
8.3.
C++
9.
Frequently Asked Questions (FAQs)
9.1.
Why is XOR important in encryption?
9.2.
Can XOR be used for more than two numbers, and how does it behave?
9.3.
Is XOR operation efficient in terms of computation and memory usage?
10.
Conclusion
Last Updated: Mar 27, 2024
Easy

xor operation

Author Riya Singh
0 upvote

Introduction

Bitwise operators in programming are like Swiss Army knives for bits—versatile tools that manipulate individual bits within an integer. Among them, the XOR (exclusive OR) operator, symbolized as ^, stands out for its unique properties and wide range of applications. 

Xor operation

This article will explore the nitty-gritty of the bitwise XOR operation, diving into how it functions, its behavior with positive and negative numbers, and its intriguing use cases. Whether you're a student, a budding programmer, or a seasoned developer, understanding the XOR operation is a step towards mastering bit-level manipulations, a skill that can optimize your code and open doors to efficient problem-solving techniques.

What is Bitwise XOR?

The XOR (exclusive OR) operation is a fundamental Bitwise operation in computer programming, represented by the caret symbol ^. It operates on two bits and returns 1 if the bits are different, and 0 if they are the same. This operation is significant in various computing tasks, from simple  Data manipulation to complex cryptographic algorithms.

In simple terms, if you compare two bits using XOR, the result is 1 if one of the bits is 1 and the other is 0. If both bits are the same, whether 0 or 1, the result is 0. This property makes XOR particularly useful for operations like toggling bits, performing checksum calculations, and even in advanced fields like error detection and cryptography.

How does bitwise ^ (XOR) work?

To understand how bitwise XOR works, it's essential to grasp its operation at the binary level. Each bit in the binary representation of a number is compared with the corresponding bit in the binary representation of another number. The XOR operation is performed on each pair of bits.

For example, consider the binary numbers 1010 (10 in decimal) and 1100 (12 in decimal). The bitwise XOR operation would compare each corresponding bit:

1 XOR 1=0(since the bits are the same)
0 XOR 1=1 (since the bits are different)
1 XOR 0=1 (since the bits are different)
0 XOR 0=0 (since the bits are the same)


So, 1010 ^ 1100 in binary (or 10 ^ 12 in decimal) equals 0110 in binary, which is 6 in decimal.

In C or C++, the bitwise XOR operation can be performed using the ^ operator. Here’s a simple code example in C:

  • C

C

#include <stdio.h>



int main() {

   int a = 10; // Binary: 1010

   int b = 12; // Binary: 1100

   int result = a ^ b;

   printf("The result of %d XOR %d is %d\n", a, b, result);

   return 0;

}
You can also try this code with Online C Compiler
Run Code


This code will output:

"The result of 10 XOR 12 is 6".

 

The XOR operation is highly valued for its ability to invert selected bits through masking and for its role in error detection and correction algorithms.

XOR Table

The XOR table, often referred to as the truth table, is a simple yet powerful tool for understanding the XOR operation. It lists all possible combinations of two binary digits (0 and 1) and their corresponding XOR outputs. This table is fundamental in grasping the behavior of the XOR operation. Here's the XOR truth table:

Bit A Bit B A XOR B
0 0 0
0 1 1
1 0 1
1 1 0


As the table shows, the XOR operation yields 1 only when the bits differ. If the bits are the same, the result is 0. This characteristic makes XOR distinct from other bitwise operations like AND and OR.

This table can be visualized and utilized in programming through conditional statements or bitwise operations. For instance, in C or C++, one might use the XOR operation to compare bits or toggle them based on this truth table.

Example

To understand its practical implementation, let's explore a basic example of the XOR operation in both C and C++. We will use a simple scenario where two numbers are XORed, and the result is displayed.

  • C
  • C++

C

#include <stdio.h>

int main() {
int num1 = 5; // Binary representation: 0101
int num2 = 3; // Binary representation: 0011
int result = num1 ^ num2; // Performs bitwise XOR

printf("The result of %d XOR %d is %d\n", num1, num2, result);
return 0;
}
You can also try this code with Online C Compiler
Run Code

C++

#include <iostream>
using namespace std;

int main() {
int num1 = 5; // Binary representation: 0101
int num2 = 3; // Binary representation: 0011
int result = num1 ^ num2; // Performs bitwise XOR

cout << "The result of " << num1 << " XOR " << num2 << " is " << result << endl;
return 0;
}
You can also try this code with Online C++ Compiler
Run Code

In this C code, num1 is 5 (binary 0101), and num2 is 3 (binary 0011). The XOR operation is performed using the ^ operator. The expected result of 0101 XOR 0011 is 0110, which is 6 in decimal. 

In the C++ version, the same operation is performed but with C++'s standard library and I/O stream. In both cases, the output will be: The result of 5 XOR 3 is 6.

These examples demonstrate the primary usage of the XOR operation in programming. XOR is beneficial when bit manipulation is crucial, such as in encryption algorithms, checksum calculations, and data compression.

XOR with Negative Numbers

Understanding how the XOR operation works with negative numbers requires a basic knowledge of how negative numbers are represented in binary. Most modern computers use a format called two's complement for this purpose. In two's complement, the binary representation of a negative number is derived by inverting all the bits of its positive counterpart and then adding one to the least significant bit.

Example :

Let's consider an example in C and C++ where we perform an XOR operation with a negative number.

  • C
  • C++

C

#include <stdio.h>

int main() {

   int num1 = 5; // Binary representation: 0000 0101

   int num2 = -3;  // Binary representation: 1111 1101 (in two's complement)

   int result = num1 ^ num2;  // Performs bitwise XOR

   printf("The result of %d XOR %d is %d\n", num1, num2, result);

   return 0;

}
You can also try this code with Online C Compiler
Run Code

C++

#include <iostream>
using namespace std;
int main() {
int num1 = 5; // Binary representation: 0000 0101
int num2 = -3; // Binary representation: 1111 1101 (in two's complement)
int result = num1 ^ num2; // Performs bitwise XOR
cout << "The result of " << num1 << " XOR " << num2 << " is " << result << endl;

return 0;
}
You can also try this code with Online C++ Compiler
Run Code

In both examples, num1 is 5 (binary 0000 0101), and num2 is -3. The binary representation of -3 in two's complement is 1111 1101. The XOR operation is performed between these two binary numbers.

Understanding the output of this operation requires examining the XOR operation bit by bit. The result might seem counterintuitive at first glance due to the nature of two's complement representation, but it follows the same XOR rules discussed earlier.

How XOR Operation Works with Negative Numbers

To delve deeper into how XOR behaves with negative numbers, let's examine a more detailed example. We'll use C and C++ to demonstrate this, providing a clear understanding of the underlying binary operations.

Example :

Consider performing an XOR operation between 6 and -3. In binary, 6 is represented as 0110. For -3, we first represent 3 in binary as 0011, then invert the bits to get 1100, and finally add 1 to obtain 1101, the two's complement representation of -3.

  • C
  • C++

C

#include <stdio.h>

int main() {

   int num1 = 6; // Binary representation: 0110

   int num2 = -3;  // Binary representation: 1101 (in two's complement)

   int result = num1 ^ num2;  // Performs bitwise XOR

   printf("The result of %d XOR %d is %d\n", num1, num2, result);

   return 0;

}
You can also try this code with Online C Compiler
Run Code

C++

#include <iostream>
using namespace std;
int main() {
int num1 = 6; // Binary representation: 0110
int num2 = -3; // Binary representation: 1101 (in two's complement)
int result = num1 ^ num2; // Performs bitwise XOR
cout << "The result of " << num1 << " XOR " << num2 << " is " << result << endl;

return 0;
}
You can also try this code with Online C++ Compiler
Run Code

In these examples, the XOR operation will be performed as follows:

0 XOR 1=1
1 XOR 1=0
1 XOR 0=1
0 XOR 0=0


So, the result of 0110 XOR 1101 is 1011. In two's complement, this binary number represents -5. The output of both programs will be: The result of 6 XOR -3 is -5.

These examples illustrate that the XOR operation follows the same rules regardless of whether the numbers are positive or negative. However, the representation of negative numbers in two's complement can lead to results that may initially seem non-intuitive.

How XOR Operation Works with Positive and Negative Numbers

The XOR operation's versatility extends to scenarios involving both positive and negative numbers. This section will provide examples in C and C++ to demonstrate how XOR behaves when applied to a mix of positive and negative integers.

Example :

Let's consider an example where we perform an XOR operation between 8 (a positive number) and -5 (a negative number). In binary, 8 is 1000. To represent -5, we start with 5 (0101 in binary), invert the bits (1010), and add 1 to obtain 1011, the two's complement representation of -5.

  • C
  • C++

C

#include <stdio.h>

int main() {

   int num1 = 8;  // Binary representation: 1000

   int num2 = -5; // Binary representation: 1011 (in two's complement)

   int result = num1 ^ num2;  // Performs bitwise XOR

   printf("The result of %d XOR %d is %d\n", num1, num2, result);

   return 0;

}
You can also try this code with Online C Compiler
Run Code

C++

#include <iostream>
using namespace std;
int main() {
int num1 = 8; // Binary representation: 1000
int num2 = -5; // Binary representation: 1011 (in two's complement)
int result = num1 ^ num2; // Performs bitwise XOR
cout << "The result of " << num1 << " XOR " << num2 << " is " << result << endl;

return 0;
}
You can also try this code with Online C++ Compiler
Run Code

In these examples, the XOR operation will be performed as follows:

1 XOR 1=0
0 XOR 0=0
0 XOR 1=1
0 XOR 1=1


So, the result of 1000 XOR 1011 is 0011, which is 3 in decimal. The output will be: The result of 8 XOR -5 is 3.

These examples show how XOR operates on a combination of positive and negative numbers. The key to understanding the result is remembering the XOR operation's rules and the two's complement representation for negative numbers.

Some Interesting Use Cases of XOR Operator

Despite its simplicity, the XOR operator finds application in various interesting and practical scenarios. Its unique properties make it a valuable tool in many computing and digital electronics areas. Here are some notable use cases:

  • Bit Toggling: XOR is often used to toggle bits. A bit can be flipped from 0 to 1 or vice versa by XORing it with 1. This property is particularly useful when you must invert the state of bits without affecting others.
     
  • Swapping Values: XOR can swap the values of two variables without using a temporary variable. This is a neat trick often used in low-level programming to save memory.
     
  • Error Detection and Correction: In digital communication, XOR is used in parity checks, a simple form of error detection. Additionally, more sophisticated error correction codes, like Hamming codes, use XOR.
     
  • Encryption Algorithms: Some basic forms of encryption use XOR. By XORing the data with a key, the original data is obscured. The same key can be used again to decrypt the data, thanks to the reversible nature of XOR.
     
  • Checksums and Hash Functions: XOR is used in certain checksum and hash function algorithms to ensure data integrity and uniqueness.
     
  • Memory Efficient Data Structures: XOR-linked lists, an alternative to traditional linked lists, use XOR operations for storing addresses, thus reducing memory usage.

Examples (Swapping Values):

  • C
  • C++

C

#include <stdio.h>

int main() {

   int x = 10, y = 15;

   printf("Before swapping: x = %d, y = %d\n", x, y);

   // Swapping values using XOR

   x = x ^ y;

   y = x ^ y;

   x = x ^ y;

   printf("After swapping: x = %d, y = %d\n", x, y);

   return 0;

}
You can also try this code with Online C Compiler
Run Code

C++

#include <iostream>
using namespace std;
int main() {
int x = 10, y = 15;
cout << "Before swapping: x = " << x << ", y = " << y << endl;
// Swapping values using XOR
x = x ^ y;
y = x ^ y;
x = x ^ y;

cout << "After swapping: x = " << x << ", y = " << y << endl;
return 0;
}
You can also try this code with Online C++ Compiler
Run Code


In these examples, x and y values are swapped using XOR without any temporary variable. This demonstrates the XOR operator's utility in optimizing memory usage.

Frequently Asked Questions (FAQs)

Why is XOR important in encryption?

XOR is fundamental in some encryption algorithms due to its reversible nature. When data is XORed with a key, the original data is obscured, and the same key can be used to decrypt it. This reversible property, combined with the fact that XOR operations are computationally efficient, makes it a useful tool in basic encryption techniques.

Can XOR be used for more than two numbers, and how does it behave?

Yes, XOR can be extended to more than two numbers. When applied to a sequence of numbers, XOR is associative and commutative, meaning the order in which the numbers are XORed does not affect the result. For example, A XOR B XOR C yields the same result as B XOR A XOR C. This property is useful in checksum calculations and data integrity checks.

Is XOR operation efficient in terms of computation and memory usage?

XOR is highly efficient both computationally and in terms of memory usage. In terms of computation, it is a basic operation that can be executed quickly by most CPUs. Regarding memory, as demonstrated in the value swapping and XOR-linked list examples, it can be used to reduce memory usage, eliminating the need for additional variables or pointers.

Conclusion

The XOR operator, symbolized as ^, is a powerful tool in programming, offering a wide array of applications from simple bit manipulation to complex cryptographic algorithms. Its ability to compare, toggle, and even encrypt bits makes it a valuable asset in a programmer's toolkit. Understanding and applying XOR in various contexts can lead to more efficient and ingenious solutions in coding challenges.

You can refer to our guided paths on the Coding Ninjas. You can check our course to learn more about DSADBMSCompetitive ProgrammingPythonJavaJavaScript, etc. 

Also, check out some of the Guided Paths on topics such as Data Structure and AlgorithmsCompetitive ProgrammingOperating SystemsComputer Networks, DBMSSystem Design, etc., as well as some Contests, Test Series, and Interview Experiences curated by top Industry Experts.

Live masterclass