Open In App

XOR Linked List – A Memory Efficient Doubly Linked List | Set 1

Last Updated : 13 Feb, 2025
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

In this post, we’re going to talk about how XOR linked lists are used to reduce the memory requirements of doubly-linked lists.

We know that each node in a doubly-linked list has two pointer fields which contain the addresses of the previous and next node. On the other hand, each node of the XOR linked list requires only a single pointer field, which doesn’t store the actual memory addresses but stores the bitwise XOR of addresses for its previous and next node.

XOR-Linked-List-Banner

XOR Linked List

Following are the Ordinary and XOR (or Memory Efficient) representations of the Doubly Linked List:

file

XOR Linked List Representation.

In this section, we will discuss both ways in order to demonstrate how XOR representation of doubly linked list differs from ordinary representation of doubly linked list.

  1. Ordinary Representation
  2. XOR List Representation

file

Ordinary Representation of doubly linked list.

Node A: 
prev = NULL, next = add(B) // previous is NULL and next is address of B 

Node B: 
prev = add(A), next = add(C) // previous is address of A and next is address of C 

Node C: 
prev = add(B), next = add(D) // previous is address of B and next is address of D 

Node D: 
prev = add(C), next = NULL // previous is address of C and next is NULL 

XOR List Representation of doubly linked list.

Lets see the structure of each node of Doubly linked list and XOR linked list:

file

Below is the representation of a node structure for an XOR linked list:

C++
struct Node {
    int data;

    // "both": XOR of the previous and next node addresses
    Node* both;
};
Java Python JavaScript

Types of XOR Linked List:

There are two main types of XOR Linked List:

  1. Singly Linked XOR List: A singly XOR linked list is a variation of the XOR linked list that uses the XOR operation to store the memory address of the next node in a singly linked list. In this type of list, each node stores the XOR of the memory address of the next node and the memory address of the current node.
  2. Doubly Linked XOR List: A doubly XOR linked list is a variation of the XOR linked list that uses the XOR operation to store the memory addresses of the next and previous nodes in a doubly linked list. In this type of list, each node stores the XOR of the memory addresses of the next and previous nodes.

Traversal in XOR linked list:

Two types of traversal are possible in XOR linked list.

  1. Forward Traversal
  2. Backward Traversal:

Forward Traversal in XOR linked list:

When traversing the list forward, it’s important to always keep the memory address of the previous element. Address of previous element helps in calculating the address of the next element by the below formula:

address of next Node = (address of prev Node) ^ (both)

Here, “both” is the XOR of address of previous node and address of next node.

traversing-XOR-forward-(1)

Forward Traversal of XOR Linked List

Below is the code snippet for forward traversal of the XOR linked list:

C++
Node* prev;
// Curr points to the first node
// of the XOR Linked list
Node* curr = head;
Node* next;
While(curr != NULL)
{
    cout << curr->data;
    // both represents the XOR value .
    next = prev ^ curr->both;
    prev = curr;
    curr = next;
}
Java Python JavaScript

Backward Traversal in XOR linked list:

When traversing the list backward, it’s important to always keep the memory address of the next element. Address of next element helps in calculating the address of the previous element by the below formula:

address of previous Node = (address of next Node) ^ (both)

Here, “both” is the XOR of address of previous node and address of next node.

traversing-XOR-backward-(1)

Backward Traversal of XOR Linked List

Below is the code snippet for backward traversal of the XOR linked list:

C++
// Curr points to the last node
//of the XOR Linked list
Node * curr ;
Node *head;
Node *prev, *next=NULL;
while(curr!=NULL)
{
  cout<<curr->data;
  //both represents the XOR value of the node.
  prev= (next) ^ (curr->both);
  next = curr;
  curr = prev;
}
Java Python C# JavaScript

Basic Operations of XOR Linked list:

  • Insertion
  • Deletion

Insertion at Beginning in XOR Linked List:

Below is the steps for insert an element at beginning in XOR Linked List:

  • Create a new node , initialize the data and address to the (NULL ^ address of head)
  • Then check, If the list is empty, return with that node;
  • Otherwise, assign the XOR of the head node to the XOR(new_node address, XOR(head->both, nullptr))

Insertion at end in XOR Linked List:

Below is the steps for insert an element at end in XOR Linked List:

  • Create a new node , initialize the data and address to the (NULL ^ add. of tail)
  • Then check, If the list is empty, return with that node;
  • Otherwise, assign the XOR of the tail node to the XOR(XOR(tail->both, nullptr), new_node address)

Deletion at Beginning in XOR Linked List:

Below is the steps for delete an element at beginning in XOR Linked List:

  • Check if the head pointer is not null (i.e., the list is not empty).
  • Find the next node’s address using XOR by performing XOR(head->both, nullptr)
  • Delete the current head node to free up the memory.and Update the head pointer to point to the calculated next node.

Deletion at End in XOR Linked List:

Below is the steps for delete an element at beginning in XOR Linked List:

  • Check if the tail pointer is not null (i.e., the list is not empty).
  • If the list is not empty:
    • Find the previous node’s address using XOR by performing XOR(tail->both, nullptr). This gives you the previous node in the list.
    • Delete the current tail node to free up the memory.
    • Update the tail pointer to point to the calculated previous node.

Below is the implementation of the above approach:

C++
// C++ implementation of the above approach
#include <cstdint>
#include <iostream>

struct Node {
    int data;

    // XOR of next and prev
    Node* both;
};

// Class representing XOR linked list
class XORLinkedList {
private:
    Node* head;
    Node* tail;

    // XOR function for Node pointers
    Node* XOR(Node* a, Node* b);

public:

    // Constructor to initialize 
    // an empty list
    XORLinkedList();
  
    // Insert a node at the head of the list
    void insertAtHead(int data);
  
    // Insert a node at the tail of the list
    void insertAtTail(int data);
  
    // Delete a node from the head
    // of the list
    void deleteFromHead();
  
    // Delete a node from the tail
    // of the list
    void deleteFromTail();
  
    // Print the elements of the list
    void printList();
};

XORLinkedList::XORLinkedList() {

    // Initialize head and tail to
    // nullptr for an empty list
    head = tail = nullptr; 
}

Node* XORLinkedList::XOR(Node* a, Node* b) {

    // XOR operation for Node pointers
    return (Node*)((uintptr_t)(a) ^ (uintptr_t)(b));
}

void XORLinkedList::insertAtHead(int data) {
    Node* newNode = new Node();
    newNode->data = data;
    newNode->both = head;

    if (head)
        head->both = XOR(newNode, XOR(head->both, nullptr));
    else {

        // If the list was empty, the new
        // node is both the head and the tail
        tail = newNode;
    }

    // Update the head to the new node
    head = newNode;
}

void XORLinkedList::insertAtTail(int data) {

    Node* newNode = new Node();
    newNode->data = data;
    newNode->both = tail;

    if (tail)
        tail->both = XOR(XOR(tail->both, nullptr), newNode);
    else {

        // If the list was empty, the new
        // node is both the head and the tail
        head = newNode;
    }

    // Update the tail to the new node
    tail = newNode;
}

void XORLinkedList::deleteFromHead() {
    if (!head) return;

    Node* temp = head;
    Node* next = head->both;
    
    if (next) {
        Node* nextNext = XOR(head, next->both);
        next->both = nextNext;
    }
    else {
        tail = nullptr;
    }
    
    head = next;
    delete temp;
}

void XORLinkedList::deleteFromTail() {
    if (!tail) return;
    Node* temp = tail;
    Node* prev = tail->both;
    
    if (prev) {
        Node* prevPrev = XOR(tail, prev->both);
        prev->both = prevPrev;
    }
    else {
        head = nullptr;
    }
    
    tail = prev;
    delete temp;
}
void XORLinkedList::printList() {
    Node* current = head;
    Node* prev = nullptr;
    while (current) {
        std::cout << current->data << " ";
        Node* next = XOR(prev, current->both);
        prev = current;
        current = next;
    }
    std::cout << std::endl;
}

int main() {
    XORLinkedList list;
    list.insertAtHead(10);
    list.insertAtHead(20);
    list.insertAtTail(30);
    list.insertAtTail(40);

    // prints 20 10 30 40
    list.printList();

    list.deleteFromHead();

    // prints 10 30 40
    list.printList();

    list.deleteFromTail();

    // prints 10 30
    list.printList();
    return 0;
}
Java Python C# JavaScript

Output
20 10 30 40 
10 30 40 
10 30 

Time Complexity: O(n)
Auxiliary Space: O(1)

Advantages and Disadvantages Of XOR Linked List:

Advantages:

  • XOR linked lists use less memory compared to traditional doubly linked lists. This is because they only need one “pointer” (the XOR of the previous and next pointers) instead of two separate pointers, which can save memory in applications where memory is a critical resource.
  • XOR linked lists can be traversed in both directions (forward and backward) without the need for an additional pointer to the previous node.
  • Insertion and deletion at both the head and tail of the list can be done in constant time (O(1)), just like in traditional singly linked lists. This makes them efficient for certain operations.

Disadvantages:

  • XOR linked lists are more complex to implement and maintain than traditional linked lists.
  • XOR linked lists are not a standard data structure in most programming languages and libraries.




Next Article

Similar Reads

three90RightbarBannerImg