linked list insertion operation c++ code example
Example 1: linked list insertion in c++
#include <iostream>
struct node {
int data ;
node * link;
};
node * Node(int data) {
node * temp = new node();
temp->data = data;
temp->link = NULL;
return temp;
}
void append(node ** head, int data) {
if(*head == NULL) {
*head = Node(data);
}else {
node * temp = * head;
while (temp->link != NULL) {
temp=temp->link;
}
temp->link = Node(data);
}
}
void insertBeg(node **head , int data) {
if(*head == NULL) {
* head = Node(data);
}else {
node * temp = Node(data);
temp->link = *head;
*head = temp;
}
}
void addafter(node * head , int loc , int data) {
node * temp , * r ;
temp = head ;
for( int i = 0 ; i<loc;i++ ) {
temp = temp->link;
if(temp == NULL) {
cout<<"there ar less elemtns" ;
return;
}
}
r = Node(data);
r->link = temp->link;
temp->link = r;
}
void display(node * head) {
node * temp = head;
while(temp!= NULL) {
cout<<temp->data<<" ";
temp = temp->link;
}
}
int main() {
node * head = NULL;
append(&head,5);
append(&head,5);
append(&head,5);
append(&head,5);
display(head);
cout<<endl;
insertBeg(&head,6);
insertBeg(&head,6);
insertBeg(&head,6);
display(head);
addafter(head,4,7);
cout<<endl;
display(head);
return 0;
}
Example 2: insertion singly linked list in c
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
}*head;
void createList(int n);
void insertNodeAtBeginning(int data);
void displayList();
int main()
{
int n, data;
printf("Enter the total number of nodes: ");
scanf("%d", &n);
createList(n);
printf("\nData in the list \n");
displayList();
printf("\nEnter data to insert at beginning of the list: ");
scanf("%d", &data);
insertNodeAtBeginning(data);
printf("\nData in the list \n");
displayList();
return 0;
}
void createList(int n)
{
struct node *newNode, *temp;
int data, i;
head = (struct node *)malloc(sizeof(struct node));
if(head == NULL)
{
printf("Unable to allocate memory.");
}
else
{
printf("Enter the data of node 1: ");
scanf("%d", &data);
head->data = data;
head->next = NULL;
temp = head;
for(i=2; i<=n; i++)
{
newNode = (struct node *)malloc(sizeof(struct node));
if(newNode == NULL)
{
printf("Unable to allocate memory.");
break;
}
else
{
printf("Enter the data of node %d: ", i);
scanf("%d", &data);
newNode->data = data;
newNode->next = NULL;
temp->next = newNode;
temp = temp->next;
}
}
printf("SINGLY LINKED LIST CREATED SUCCESSFULLY\n");
}
}
void insertNodeAtBeginning(int data)
{
struct node *newNode;
newNode = (struct node*)malloc(sizeof(struct node));
if(newNode == NULL)
{
printf("Unable to allocate memory.");
}
else
{
newNode->data = data;
newNode->next = head;
head = newNode;
printf("DATA INSERTED SUCCESSFULLY\n");
}
}
void displayList()
{
struct node *temp;
if(head == NULL)
{
printf("List is empty.");
}
else
{
temp = head;
while(temp != NULL)
{
printf("Data = %d\n", temp->data);
temp = temp->next;
}
}
}