Loading, please wait...

Single Linked List

A Single Linked List is one in which all nodes are linked together in some sequential manner. It is also known as Linear linked list. Clearly it has the beginning and the end. Singly list is that we cannot access the predecessor of node from the current node. Single linked list is a sequence of elements in which every element has link to its next element in the sequence.

 

In any single linked list, the individual element is called as "Node". Every "Node" contains two fields, data and next. The data field is used to store actual value of that node and next field is used to store the address of the next node in the sequence.

 

The graphical representation of a node in a single linked list is as follows.

 

 

 

 

  • In a single linked list, the address of the first node is always stored in a reference node known as "front" ( it is also known as "head").
  • Always next part (reference part) of the last node must be NULL.

 

Example:

 

 

 



Operations:

  • Insertion
  • Deletion
  • Display

 

 

For creating an empty list, First perform the following steps before implementing actual operations.

 

Step 1: Include all the header files which are used in the program.

Step 2: Declare all the user defined functions.

Step 3: Define a Node structure with two members’ data and next.

Step 4: Define a Node pointer 'head' and set it to NULL.

Step 5: Implement the main method by displaying operations menu and make suitable function calls in the main method to perform user selected operation.

 

 

Insertion

In a single linked list, the insertion operation can be performed in three ways. They are as follows.

  1. Inserting at Beginning of the list.
  2. Inserting at End of the list.
  3. Inserting at Specific location in the list.

 

Inserting at beginning of the list

We can use the following steps to insert a new node at beginning of the single linked list.

 

Step 1: Create a newNode with given value.

Step 2: Check whether list is Empty (head == NULL).

Step 3: If it is Empty then, set newNode?next = NULL and head = newNode.

Step 4: If it is Not Empty then, set newNode?next = head and head = newNode.

 

 

Inserting at End of the list

We can use the following steps to insert a new node at end of the single linked list...

 

Step 1: Create a newNode with given value and newNode ? next as NULL.

Step 2: Check whether list is Empty (head == NULL).

Step 3: If it is Empty then, set head = newNode.

Step 4: If it is Not Empty then, define a node pointer temp and initialize with head.

Step 5: Keep moving the temp to its next node until it reaches to the last node in the list (until temp ? next is equal to NULL).

Step 6: Set temp ? next = newNode.

 

 

Inserting at specific location in the list (After a Node)

We can use the following steps to insert a new node after a node in the single linked list.

 

Step 1: Create a newNode with given value.

Step 2: Check whether list is Empty (head == NULL)

Step 3: If it is Empty then, set newNode ? next = NULL and head = newNode.

Step 4: If it is Not Empty then, define a node pointer temp and initialize with head.

Step 5: Keep moving the temp to its next node until it reaches to the node after which we want to insert the newNode (until temp1 ? data is equal to location, here location is the node value after which we want to insert the newNode).

Step 6: Every time check whether temp is reached to last node or not. If it is reached to last node then display 'Given node is not found in the list!!! Insertion not possible!!!' and terminate the function. Otherwise move the temp to next node.

Step 7: Finally, Set 'newNode ? next = temp ? next' and 'temp ? next = newNode'

 

 

Listing : Following Program is showing all the insertion methods on Linked List.

/* A complete C program to demonstrate all insertion methodson Linked List */

#include <stdio.h>

#include <stdlib.h>

// A linked list node

struct node

{

int data;

struct node *next;

};

/* Given a reference (pointer to pointer) to the head of a list and 

an int, inserts a new node on the front of the list. */

void push(struct node** head_ref, int new_data)

{

/* 1. allocate node */

struct node* new_node = (struct node*) malloc(sizeof(struct node));

/* 2. put in the data */

new_node->data = new_data;

/* 3. Make next of new node as head */

new_node->next = (*head_ref);

/* 4. move the head to point to the new node */

(*head_ref) = new_node;

}

/* Given a node prev_node, insert a new node after the given 

prev_node */

void insertAfter(struct node* prev_node, int new_data)

{

/*1. check if the given prev_node is NULL */

if (prev_node == NULL)

{

printf("the given previous node cannot be NULL");

return;

}

/* 2. allocate new node */

struct node* new_node =(struct node*) malloc(sizeof(struct node));

/* 3. put in the data */

new_node->data = new_data;

/* 4. Make next of new node as next of prev_node */

new_node->next = prev_node->next;

/* 5. move the next of prev_node as new_node */

prev_node->next = new_node;

}

/* Given a reference (pointer to pointer) to the head

of a list and an int, appends a new node at the end */

void append(struct node** head_ref, int new_data)

{

/* 1. allocate node */

struct node* new_node = (struct node*) malloc(sizeof(struct node));

struct node *last = *head_ref; /* used in step 5*/

/* 2. put in the data */

new_node->data = new_data;


/* 3. This new node is going to be the last node, so make next of

it as NULL*/

new_node->next = NULL;

/* 4. If the Linked List is empty, then make the new node as head */

if (*head_ref == NULL)

{

*head_ref = new_node;

return;

}

/* 5. Else traverse till the last node */

while (last->next != NULL)

last = last->next;

/* 6. Change the next of last node */

last->next = new_node;

return;

}

// This function prints contents of linked list starting from head

void printList(struct node *node)

{

while (node != NULL)

{

printf(" %d ", node->data);3

node = node->next;

}

}

/* Drier program to test above functions*/

int main()

{

/* Start with the empty list */

struct node* head = NULL;

// Insert 6. So linked list becomes 6->NULL

append(&head, 6);

// Insert 7 at the beginning. So linked list becomes 7->6->NULL

push(&head, 7);

// Insert 1 at the beginning. So linked list becomes 1->7->6->NULL

push(&head, 1);

// Insert 4 at the end. So linked list becomes 1->7->6->4->NULL

append(&head, 4);

// Insert 8, after 7. So linked list becomes 1->7->8->6->4->NULL

insertAfter(head->next, 8);

printf("\n Created Linked list is: ");

printList(head);

return 0;

}




Output:

Created Linked list is : 1 7 8 6 4

 

 

Deletion

In a single linked list, the deletion operation can be performed in three ways. They are as follows.

  1. Deleting from Beginning of the list
  2. Deleting from End of the list
  3. Deleting a Specific Node

 

 

Deleting from Beginning of the list

We can use the following steps to delete a node from beginning of the single linked list.

 

Step 1: Check whether list is Empty (head == NULL).

Step 2: If it is Empty then, display 'List is Empty!!! Deletion is not possible' and terminate the function.

Step 3: If it is Not Empty then, define a Node pointer 'temp' and initialize with head.

Step 4: Check whether list is having only one node (temp ? next == NULL).

Step 5: If it is TRUE then set head = NULL and delete temp (Setting Empty list conditions).

Step 6: If it is FALSE then set head = temp ? next, and delete temp.

 

 

Deleting from End of the list

We can use the following steps to delete a node from end of the single linked list.

 

Step 1: Check whether list is Empty (head == NULL).

Step 2: If it is Empty then, display 'List is Empty!!! Deletion is not possible' and terminate the function.

Step 3: If it is Not Empty then, define two Node pointers 'temp1' and 'temp2' and initialize 'temp1' with head.

Step 4: Check whether list has only one Node (temp1 ? next == NULL).

Step 5: If it is TRUE. Then, set head = NULL and delete temp1. And terminate the function. (Setting Empty list condition).

Step 6: If it is FALSE. Then, set 'temp2 = temp1 ' and move temp1 to its next node. Repeat the same until it reaches to the last node in the list. (until temp1 ? next == NULL).

Step 7: Finally, Set temp2 ? next = NULL and delete temp1.

 

 

Deleting a specific Node from the list

We can use the following steps to delete a specific node from the single linked list.

 

Step 1: Check whether list is Empty (head == NULL).

Step 2: If it is Empty then, display 'List is Empty!!! Deletion is not possible' and terminate the function.

Step 3: If it is Not Empty then, define two Node pointers 'temp1' and 'temp2' and initialize 'temp1' with head.

Step 4: Keep moving the temp1 until it reaches to the exact node to be deleted or to the last node. And every time set 'temp2 = temp1' before moving the 'temp1' to its next node.

Step 5: If it is reached to the last node then display 'Given node not found in the list! Deletion not possible!!!'. And terminate the function.

Step 6: If it is reached to the exact node which we want to delete, then check whether list is having only one node or not.

Step 7: If list has only one node and that is the node to be deleted, then set head = NULL and delete temp1 (free(temp1)).

Step 8: If list contains multiple nodes, then check whether temp1 is the first node in the list (temp1 == head).

Step 9: If temp1 is the first node then move the head to the next node (head = head ? next) and delete temp1.

Step 10: If temp1 is not first node then check whether it is last node in the list (temp1 ? next == NULL).

Step 11: If temp1 is last node then set temp2 ? next = NULL and delete temp1 (free(temp1)).

Step 12: If temp1 is not first node and not last node then set temp2 ? next = temp1 ? next and delete temp1 (free(temp1)).

 

 

Listing: Following program showing the implementation of all deletion methods in Singly Linked List.

/* A complete working C program to demonstrate deletion in singlylinked list */

#include <stdio.h>

#include <stdlib.h>

// A linked list node

struct node

{

int data;

struct node *next;

};


/* Given a reference (pointer to pointer) to the head of a list and an int, inserts a new node on the front of the list. */

void push(struct node** head_ref, int new_data)

{

struct node* new_node = (struct node*) malloc(sizeof(struct node));

new_node->data = new_data;

new_node->next = (*head_ref);

(*head_ref) = new_node;

}


/* Given a reference (pointer to pointer) to the head of a list and a key, deletes the first occurrence of key in linked list */

void deleteNode(struct node **head_ref, int key)

{

// Store head node

struct node* temp = *head_ref, *prev;

// If head node itself holds the key to be deleted

if (temp != NULL && temp->data == key)

{

*head_ref = temp->next; // Changed head

free(temp); // free old head

return;

}


// Search for the key to be deleted, keep track of the

// previous node as we need to change 'prev->next'

while (temp != NULL && temp->data != key)

{

prev = temp;

temp = temp->next;

}

// If key was not present in linked list

if (temp == NULL) return;

// Unlink the node from linked list

prev->next = temp->next;

free(temp); // Free memory

}


// This function prints contents of linked list starting from 

// the given node

void printList(struct node *node)

{

while (node != NULL)

{

printf(" %d ", node->data);

node = node->next;

}

}

/* Drier program to test above functions*/

int main()

{

/* Start with the empty list */

struct node* head = NULL;

push(&head, 7);

push(&head, 1);

push(&head, 3);

push(&head, 2);

puts("Created Linked List: ");

printList(head);

deleteNode(&head, 1);

puts("\nLinked List after Deletion of 1: ");

printList(head);

return 0;

}


Output:
Created Linked List:
2  3  1  7
Linked List after Deletion of 1:
2  3  7



Displaying a Single Linked List

We can use the following steps to display the elements of a single linked list.

 

Step 1: Check whether list is Empty (head == NULL).

Step 2: If it is Empty then, display 'List is Empty!!!' and terminate the function.

Step 3: If it is Not Empty then, define a Node pointer 'temp' and initialize with head.

Step 4: Keep displaying temp ? data with an arrow (--->) until temp reaches to the last node.

Step 5: Finally display temp ? data with arrow pointing to NULL (temp ? data ---> NULL).