Theory PDF
Theory PDF
Linked Lists are linear or sequential data structures in which elements are
stored at non-contiguous memory location and are linked to each other using
pointers.
Like arrays, linked lists are also linear data structures but in linked lists elements are
not stored at contiguous memory locations. They can be stored anywhere in the
memory but for sequential access, the nodes are linked to each other using pointers.
• Data: This part stores the data value of the node. That is the information to be
stored at the current node.
• Next Pointer: This is the pointer variable or any other variable which stores
the address of the next node in the memory.
Advantages of Linked Lists over Arrays: Arrays can be used to store linear data
of similar types, but arrays have the following limitations:
1. The size of the arrays is fixed: So we must know the upper limit on the
number of elements in advance. Also, generally, the allocated memory is
equal to the upper limit irrespective of the usage. On the other hand, linked
lists are dynamic and the size of the linked list can be incremented or
decremented during runtime.
2. Inserting a new element in an array of elements is expensive, because a room
has to be created for the new elements and to create room, existing elements
have to shift.
And if we want to insert a new ID 1005, then to maintain the sorted order, we
have to move all the elements after 1000 (excluding 1000). Deletion is also
expensive with arrays until unless some special techniques are used. For
example, to delete 1010 in id[], everything after 1010 has to be moved.
On the other hand, nodes in linked lists can be inserted or deleted without any
shift operation and is efficient than that of arrays.
1. data
2. Pointer (Or Reference) to the next node
struct Node
{
int data;
struct Node* next;
};
In Java, LinkedList can be represented as a class and a Node as a separate class.
The LinkedList class contains a reference of Node class type.
class LinkedList
{
Node head; // head of list
Below is a sample program in both C/C++ and Java to create a simple linked list with
3 Nodes.
C++
#include<bits/stdc++.h>
using namespace std;
head
|
|
+---+---+ +---+---+ +----+------+
| 1 | o----->| 2 | o-----> | 3 | NULL |
+---+---+ +---+---+ +----+------+
return 0;
}
Run
Java
Linked List Traversal: In the previous program, we have created a simple linked list
with three nodes. Let us traverse the created list and print the data of each node. For
traversal, let us write a general purpose function printList() that prints any given list.
C++
#include<bits/stdc++.h>
using namespace std;
head
|
|
+---+---+ +---+---+ +----+------+
| 1 | o----->| 2 | o-----> | 3 | NULL |
+---+---+ +---+---+ +----+------+
return 0;
}
Run
Java
class LinkedList
{
Node head; // head of list
llist.printList();
}
}
Run
Output:
1 2 3
Insertion in Singly Linked Lists
Given the head node of a linked list, the task is to insert a new node in this
already created linked list.
There can be many different situations that may arise while inserting a node in a
Linked List. Three most frequent situations are:
We have seen that a linked list node can be represented using structures and
classes as:
C++
/* Node Class */
class Node
{
int data;
Node next;
Let us now take a look at each of the above three listed methods of inserting a node
in the Linked List:
Let us call the function that adds a new node at the front of the list as push().
The push() function must receive a pointer to the head node, because the
function must change the head pointer to point to the new node.
Below is the 4 step process of adding a new node at the front of Linked List
declared at the beginning of this post:
C++
Run
Java
Run
The time complexity of inserting a node at start of the List is O(1).
• Inserting a Node after given Node: Inserting a Node after a given Node is
also similar to the above process. One have to first allocate the new Node and
change the next pointer of the newly created node to the next of the previous
node and the next pointer of the previous node to point to the newly created
node.
Let us call the function that adds a new node after a given node in the list as
insertAfter(). The insertAfter() function must receive a pointer to the previous
node after which the new node is to be inserted.
Below is the complete process of adding a new node after a given node in the
Linked List declared at the beginning of this post:
C++
Run
Java
Run
Since a Linked List is typically represented by the head of it, we have to first
traverse the list till the end in order to get the pointer pointing to the last node
and then change the next of last node to new node.
Below is the complete 6 step process of adding a new Node at the end of the
list:
C++
Run
Java
Run
Like inserting a node in a linked list, there can be many situations when it comes to
deleting a Node from a Linked List. Some of the most frequent such situations are:
• Given the data value of a Node, delete the first occurrence of that data in the
list.
• Given the position of a node, delete the node present at the given position in
the list.
• Given a pointer to the node to be deleted, delete the node.
Let us look at each one of these situations and their solutions with complete
explanations:
• Deleting the first occurrence of a given Data Value: Deleting a node by its
value can be done by traversing the list till the node just before the node with
the value as the given key. Once the node just before the node to be deleted
is found. Update its next pointer to point to the next of its next node.
That is:
The time complexity of this operation in worst case is O(N) where N is the
number of nodes in the Linked List.
C++
Run
Java
Run
The time complexity of this operation in worst case is O(N) where N is the
number of nodes in the Linked List.
• Deleting a node whose pointer is given: In this case a pointer is given
which is pointing to a particular node in the linked list and task is to delete that
particular node.
This can be done by following a similar approach as in the above two cases,
by first finding the node just previous to it and updating its next pointer. The
time complexity of this would be again O(N).
However, this particular case can be solved with O(1) time complexity if the
pointer to the node to be deleted is given.
The efficient solution is to copy the data from the next node to the node to
be deleted and delete the next node. Suppose the node to be deleted
is node_ptr, it can be deleted as:
Note: This solution fails if the node to be deleted is the last node of the List.
• Each node contains two pointers, one pointing to the next node and the other
pointing to the previous node.
• The prev of Head node is NULL, as there is no previous node of Head.
• The next of last node is NULL, as there is no node after the last node.
Below is the sample Doubly Linked List node in C++ and Java:
C++
Below is the complete program to create and traverse a Doubly Linked List in both
C++ and Java:
C++
#include <bits/stdc++.h>
using namespace std;
return;
}
/* Driver program to test above functions*/
int main()
{
/* Start with the empty list */
struct Node* head = NULL;
return 0;
}
Run
Java
Consider the above Doubly Linked List. Following are the Ordinary and XOR (or
Memory Effiecient) representations of the Doubly Linked List.
Ordinary Representation:
• 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
• Node A:
npx = 0 XOR add(B) // bitwise XOR of zero and address of B
• Node B:
npx = add(A) XOR add(C) // bitwise XOR of address of A and address of C
• Node C:
npx = add(B) XOR add(D) // bitwise XOR of address of B and address of D
• Node D:
npx = add(C) XOR 0 // bitwise XOR of address of C and 0
Traversal of XOR Linked List: We can traverse the XOR list in both forward and
reverse direction. While traversing the list we need to remember the address of the
previously accessed node in order to calculate the next node’s address. For
example, when we are at node C, we must have the address of B. XOR of add(B)
and npx of C gives us the add(D). The reason is simple: npx(C) is “add(B) XOR
add(D)”. If we do xor of npx(C) with add(B), we get the result as “add(B) XOR add(D)
XOR add(B)” which is “add(D) XOR 0” which is “add(D)”. So we have the address of
the next node. Similarly, we can traverse the list in a backward direction.
Circular Linked Lists
A circular linked list is a linked list where all nodes are connected to form a
circle. There is no NULL at the end. A circular linked list can be a singly
circular linked list or doubly circular linked list.
Implementation:
To implement a circular singly linked list, we take an external pointer that points to
the last node of the list. If we have a pointer last pointing to the last node, then last ->
next will point to the first node.
The pointer last points to node Z and last -> next points to the node P.
Why have we taken a pointer that points to the last node instead of first node?
For insertion of node in the beginning we need traverse the whole list. Also, for
insertion and the end, the whole list has to be traversed. If instead of start pointer we
take a pointer to the last node then in both the cases there won’t be any need to
traverse the whole list. So insertion in the begging or at the end takes constant time
irrespective of the length of the list.
Below is a sample program to create and traverse in a Circular Linked List in both
Java and C++:
C++
return last;
}
return last;
}
}
while(p != last->next);
// Driver Program
int main()
{
struct Node *last = NULL;
traverse(last);
return 0;
}
Run
Java
class CLL
{
// A circular linked list node
static class Node
{
int data;
Node next;
};
return last;
}
temp.data = data;
temp.next = last.next;
last.next = temp;
last = temp;
return last;
}
}
while(p != last.next);
// Driver code
public static void main(String[] args)
{
Node last = null;
traverse(last);
}
}
Run
Output:
6 4 2 8 12 10
1. Any node can be a starting point. We can traverse the whole list by starting
from any point. We just need to stop when the first visited node is visited
again.
2. Useful for implementation of a queue. Unlike this implementation, we don’t
need to maintain two pointers for front and rear if we use a circular linked list.
We can maintain a pointer to the last inserted node and front can always be
obtained as next of last.
3. Circular lists are useful in applications to repeatedly go around the list. For
example, when multiple applications are running on a PC, it is common for the
operating system to put the running applications on a list and then to cycle
through them, giving each of them a slice of time to execute, and then making
them wait while the CPU is given to another application. It is convenient for
the operating system to use a circular list so that when it reaches the end of
the list it can cycle around to the front of the list.
4. Circular Doubly Linked Lists are used for implementation of advanced data
structures like Fibonacci Heap.
Pseudo Code
head = prev
}
1. We return the pointer of next node to his previous(current) node and then
make the previous node as the next node of returned node and then returning
the current node.
2. We first traverse till the last node and making the last node as the head node
of reversed linked list and then applying the above procedure in the recursive
manner.
Pseudo Code
Node* reverse(Node* node)
{
if (node == NULL) :
return NULL
if (node->next == NULL) :
head = node
return node
Node* temp = reverse(node->next)
temp->next = node
node->next = NULL
return node
}
Floyd’s Cycle-Finding Algorithm: This is the fastest method. Traverse linked list
using two pointers. Move one pointer by one step and another pointer by two-step. If
these pointers meet at the same node then there is a loop. If pointers do not meet
then linked list doesn’t have a loop.
You may visualize the solution as two runners are running on a circular track, If they
are having different speeds they will definitely meet up on circular track itself.
Pseudo Code
Above diagram shows an example with two linked list having 15 as intersection
point.
Naive Solutions : This solution requires modifications to basic linked list data
structure. Have a visited flag with each node. Traverse the first linked list and keep
marking visited nodes. Now traverse the second linked list, If you see a visited node
again then there is an intersection point, return the intersecting node. This solution
works in O(m+n) but requires additional information with each node. A variation of
this solution that doesn’t require modification to the basic data structure can be
implemented using a hash. Traverse the first linked list and store the addresses of
visited nodes in a hash. Now traverse the second linked list and if you see an
address that already exists in the hash then return the intersecting node.
Node Count Difference Solution : Problem can be solved following these steps -
1. Get count of the nodes in the first list, let count be c1.
2. Get a count of the nodes in the second list, let count be c2.
3. Get the difference of counts d = abs(c1 – c2).
4. Now traverse the bigger list from the first node till d nodes so that from here
onwards both the lists have equal no of nodes.
5. Then we can traverse both the lists in parallel till we come across a common
node. (Note that getting a common node is done by comparing the address of
the nodes)
Pseudo Code
/* function to get the intersection point of two linked
lists head1 and head2 */
int getIntesectionNode( Node* head1, Node* head2)
{
c1 = getCount(head1)
c2 = getCount(head2)
d // difference
for ( i = 0 to d-1 )
{
if(current1 == NULL)
return -1
current1 = current1->next
}