C / C++ Program Code To Implement Singly Linked List, With Functions to perform Printing, Create, Insertion, Reversal of the Linked List

Leave a Comment
/*The Following C / C++ Program used to implement the singly linked list creation & various related operations. The User is given the functions to create, print, print in reversem insert the node element in begineeing, end or anywhere, same with delete operation & function to reverse the linked list. */

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
 

typedef struct node
   { int data;
     struct node *next;
   }node;

node *create();
//function to create Linked List
node *insert_b(node *head,int x); //Function to insert an element at the beginning
node *insert_e(node *head,int x); //Function to insert an element at the end
node *insert_in(node *head,int x); //Function to insert an element in the middle or anywhere
node *delete_b(node *head); //Function to delete a node from beginning
node *delete_e(node *head); //Function to delete a node from end
node *delete_in(node *head); //Function to delete a node anywhere in between
node *reverse(node *head); //Function to reverse the the Linked list
void printreverse(node *head); //Function to print reverse linked list
void print(node *head); //Function to print the linked list

void main()
{ int op,op1,x;
  node *head=NULL;
 
  do
    {
      printf("\n\n1)Create\n2)Insert Element\n3)Delete Element\n4)Display Reverse List ");
      printf("\n5)Reverce The List\n6)Display The List\n7)Exit");
      printf("\nEnter your Choice:");
      scanf("%d",&op);
      switch(op)
       { 

     case 1:head=create();break;
     case 2:printf("\n\t1)Beginning\n\t2)End\n\t3)In between");
        printf("\nEnter your choice : ");
        scanf("%d",&op1);
        printf("\nEnter the data to be inserted : ");
        scanf("%d",&x);
        switch(op1)
         {  case 1: head=insert_b(head,x);
                break;
            case 2: head=insert_e(head,x);
                break;
            case 3: head=insert_in(head, x);
                break;
          }
        break;
     case 3:printf("\n\t1)Beginning\n\t2)End\n\t3)In between");
        printf("\nEnter your choice : ");
        scanf("%d",&op1);
        switch(op1)
         {  case 1:head=delete_b(head);
               break;
            case 2:head=delete_e(head);
               break;
            case 3:head=delete_in(head);
               break;
          }
         break;
     case 4:printreverse(head);break;
     case 5:head=reverse(head);
        print(head);
        break;
     case 6:print(head);break;
       }
    }while(op!=7);
    system("pause");
}

void printreverse(node *head)
  {
    if(head !=NULL)
       {
      printreverse(head->next);
      printf("%d   ",head->data);
       }
  }



 

node *create()

node *head,*p;
  int i,n;
  head=NULL;
  printf("\n Enter no of data:");
  scanf("%d",&n);
  printf("\nEnter the data:");
  for(i=0;i<n;i++)
   {
     if(head==NULL)
     p=head=(node*)malloc(sizeof(node));
     else
       {
     p->next=(node*)malloc(sizeof(node));
     p=p->next;
       }
       p->next=NULL;
       scanf("%d",&(p->data));
   }
 return(head);
}


 

node *insert_b(node *head,int x)
{   

node *p;
    p=(node*)malloc(sizeof(node));
    p->data=x;
    p->next=head;
    head=p;
    return(head);
}

 

node *insert_e(node *head,int x)
{   

node *p,*q;
    p=(node*)malloc(sizeof(node));
    p->data=x;
    p->next=NULL;
    if(head==NULL)
       return(p);
    //locate the last node
    for(q=head;q->next!=NULL;q=q->next)
    ;
    q->next=p;
    return(head);
}

 


node *insert_in(node *head,int x)
{   

node *p,*q;
    int y;
    p=(node*)malloc(sizeof(node));
    p->data=x;
    p->next=NULL;
    printf("\Insert after which number ? : ");
    scanf("%d",&y);
    //locate the lthe data 'y'
    for(q=head ; q != NULL && q->data != y ; q=q->next)
    ;
    if(q!=NULL)
      {
    p->next=q->next;
    q->next=p;
      }
    else
       printf("\nData not found ");
    return(head);
}


 

node *delete_b(node *head)
{
  node *p,*q;
  if(head==NULL)
     {
    printf("\nUnderflow....Empty Linked List");
    return(head);
     }
  p=head;
  head=head->next;
  free(p);
  return(head);
}


 

node *delete_e(node *head)
{
  node *p,*q;
  if(head==NULL)
     {
    printf("\nUnderflow....Empty Linked List");
    return(head);
     }
  p=head;
  if(head->next==NULL)
     { 

// Delete the only element
       head=NULL;
       free(p);
       return(head);
     }
   for(q=head;q->next->next !=NULL;q=q->next)
   ;
   p=q->next;
   q->next=NULL;
   free(p);
   return(head);
}
node *delete_in(node *head)
{
  node *p,*q;
  int x,i;
  if(head==NULL)
     {
    printf("\nUnderflow....Empty Linked List");
    return(head);
     }
  printf("\nEnter the data to be deleted : ");
  scanf("%d",&x);
  if(head->data==x)
     {
       p=head;
       head=head->next;
       free(p);
       return(head);
     }
   for(q=head;q->next->data!=x && q->next !=NULL;q=q->next )
   ;
   if(q->next==NULL)
     {
       printf("\nUnderflow.....data not found");
       return(head);
     }
   p=q->next;
   q->next=q->next->next;
   free(p);
   return(head);
}

 

void print(node *head)
{ node *p;
 printf("\n\n");
 for(p=head;p!=NULL;p=p->next)
  printf("%d  ",p->data);
}

 

node *reverse(node *head)
  { 

   node *p,*q,*r;
    p=NULL;
    q=head;
    r=q->next;
    while(q!=NULL)
      {
    q->next=p;
    p=q;
    q=r;
    if(q!=NULL)
       r=q->next;
      }
   return(p);
  }



Screenshot:
C / C++ Program Code To Implement Singly Linked List, With Functions to perform Printing, Create, Insertion, Reversal of the Linked List

0 comments: