SlideShare una empresa de Scribd logo
1 de 5
Descargar para leer sin conexión
//////////////////////////////////////////////////////////////
//////////        -: Singly Link list :-            /////////
////////////////////////////////////////////////////////////
/* reference : Understandng pointer though c - Y karnetkar.
*/
//////////////////////////////////////////////////////////
//////////     Programmer : Harsh chandra     ///////////
////////////////////////////////////////////////////////
# include<stdio.h>
# include<conio.h>
# include<alloc.h>
# include<stdlib.h>
struct node
{ int data;
        struct node *link;
};
void append(struct node **,int);
void in_begin(struct node **,int);
void del(struct node **,int);
void in_middle(struct node **,int,int);
int count(struct node *);
void display(struct node *);
void main()
{ struct node *p; /* p can be said as the head or a start ptr */
         p=NULL;
         /* Printing the menu */
         int num,loc;
         char choice;
         do
         { clrscr();
                 printf("PROGRAM TO IMPLEMENT SINGLY LINKED LIST ");
                 printf("n=====================================");
                 printf("nn1.Create  Appending The List");
                 printf("n2.Insert Node At Begining");
                 printf("n3.Insert Node In Middle");
                 printf("n4.Deleting a Node");
                 printf("n5.Counting The No Of Nodes");
                 printf("n6.Displaying the list");
                 printf("n7.Exit");
                 oper:
                 gotoxy(1,15);printf("                                 ");
                 gotoxy(1,11);printf("nnEnter ur Choice : ");
                 choice=getch();
                 switch(choice)
                 { case '1':
                           char ans;
                           do
                          { printf("Enter any number : ");
                                  scanf("%d",&num);
                                  append(&p,num);
                                  printf("Enter more (y/n) :");
                                  fflush(stdin);
                                  ans=getchar();
                           }while(ans !='n');
                          break;
                          case '2':
printf("Enter The Data : ");
                        scanf("%d",&num);
                        in_begin(&p,num);
                        break;
                        case '3':
                        printf("nEnter The Position :");
                        scanf("%d",&loc);
                        printf("nEnter The Data : ");
                        scanf("%d",&num);
                        in_middle(&p,loc,num);
                        break;
                        case '4':
                        printf("nEnter The Data u Want To Delete : ");
                        scanf("%d",&num);
                        del(&p,num);
                        break;
                        case '5':
                        printf("nThe No Of Nodes Are %d",count(p));
                        getch();
                        break;
                        case '6':
                        display(p);
                        getch();
                        break;
                        case '7':
                        printf("nnQuiting.......");
                        getch();
                        exit(0);
                        break;
                        default:
                        gotoxy(1,15);printf("Invalid choice.Please Enter Correct Choice");
                        getch();
                        goto oper;
               }
        }while(choice !=7);
}
void append(struct node **q,int num)
{ struct node *temp,*r;
         temp = *q;
         if(*q==NULL)
         { temp = (struct node *)malloc(sizeof(struct node));
                   temp->data=num;
                   temp->link=NULL;
                   *q=temp;
         }
         else
         { temp = *q;
                 while(temp->link !=NULL)
                 { temp=temp->link;
                 }
r = (struct node *)malloc(sizeof(struct node));
                 r->data=num;
                 r->link=NULL;
                 temp->link=r;
         }
}
void display(struct node *q)
{     if(q==NULL)
                { printf("nnEmpty Link List.Can't Display The Data");
                         getch();
                         goto last;
                }
                  while(q!=NULL)
         { printf("n%d",q->data);
                  q=q->link;
         }
         last:
}
int count(struct node *q)
{ int c=0;
        if(q==NULL)
        { printf("Empty Link List.n");
          getch();
          goto last;
        }
        while(q!=NULL)
        { c++;
                  q=q->link;
        }
        last:
        return c;
}
void in_begin(struct node **q,int num)
{ struct node *temp;
        if(*q==NULL)
        { printf("Link List Is Empty.Can't Insert.");
                 getch();
                 goto last;
        }
        else
        { temp=(struct node *)malloc(sizeof(struct node));
                   temp->data=num;
                   temp->link=*q;
                   *q=temp; /* pointing to the first node */
          }
          last:
          getch();
}
void in_middle(struct node **q,int loc,int num)
{ struct node *temp,*n;
        int c=1,flag=0;
        temp=*q;
        if(*q==NULL)
        { printf("nnLink List Is Empty.Can't Insert.");
                 getch();
goto last;
        }
        else
        while(temp!=NULL)
        { if(c==loc)
                 { n = (struct node *)malloc(sizeof(struct node));
                          n->data=num;
                          n->link=temp->link;
                          temp->link=n;
                          flag=1;
                 }
                 c++;
                 temp=temp->link;
          }
          if(flag==0)
          { printf("nnNode Specified Doesn't Exist.Cant Enter The Data");
                 getch();
          }
          else
          { printf("Data Inserted");
                 getch();
          }
          last:
          getch();
}
void del(struct node**q,int num)
{    if(*q==NULL)
          { printf("nnEmpty Linked List.Cant Delete The Data.");
                   getch();
                   goto last;
          }
          else
          {
          struct node *old,*temp;
          int flag=0;
          temp=*q;
          while(temp!=NULL)
          { if(temp->data==num)
                   { if(temp==*q)           /* First Node case */
                                 *q=temp->link; /* shifted the header node */
                                 else
                                 old->link=temp->link;
                                  free(temp);
                                  flag=1;
                           }
                           else
                           { old=temp;
                                  temp=temp->link;
                           }
                 }
                 if(flag==0)
                        printf("nData Not Found...");
                 else
                          printf("nData Deleted...Tap a key to continue");
                          getch();
                }
                last:
                getch();
}

Más contenido relacionado

Destacado

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

26656476 singly-linked-iist-programme-as-in-understanding-pointers-in-c-by-yashwant-kanetkar

  • 1. ////////////////////////////////////////////////////////////// ////////// -: Singly Link list :- ///////// //////////////////////////////////////////////////////////// /* reference : Understandng pointer though c - Y karnetkar. */ ////////////////////////////////////////////////////////// ////////// Programmer : Harsh chandra /////////// //////////////////////////////////////////////////////// # include<stdio.h> # include<conio.h> # include<alloc.h> # include<stdlib.h> struct node { int data; struct node *link; }; void append(struct node **,int); void in_begin(struct node **,int); void del(struct node **,int); void in_middle(struct node **,int,int); int count(struct node *); void display(struct node *); void main() { struct node *p; /* p can be said as the head or a start ptr */ p=NULL; /* Printing the menu */ int num,loc; char choice; do { clrscr(); printf("PROGRAM TO IMPLEMENT SINGLY LINKED LIST "); printf("n====================================="); printf("nn1.Create Appending The List"); printf("n2.Insert Node At Begining"); printf("n3.Insert Node In Middle"); printf("n4.Deleting a Node"); printf("n5.Counting The No Of Nodes"); printf("n6.Displaying the list"); printf("n7.Exit"); oper: gotoxy(1,15);printf(" "); gotoxy(1,11);printf("nnEnter ur Choice : "); choice=getch(); switch(choice) { case '1': char ans; do { printf("Enter any number : "); scanf("%d",&num); append(&p,num); printf("Enter more (y/n) :"); fflush(stdin); ans=getchar(); }while(ans !='n'); break; case '2':
  • 2. printf("Enter The Data : "); scanf("%d",&num); in_begin(&p,num); break; case '3': printf("nEnter The Position :"); scanf("%d",&loc); printf("nEnter The Data : "); scanf("%d",&num); in_middle(&p,loc,num); break; case '4': printf("nEnter The Data u Want To Delete : "); scanf("%d",&num); del(&p,num); break; case '5': printf("nThe No Of Nodes Are %d",count(p)); getch(); break; case '6': display(p); getch(); break; case '7': printf("nnQuiting......."); getch(); exit(0); break; default: gotoxy(1,15);printf("Invalid choice.Please Enter Correct Choice"); getch(); goto oper; } }while(choice !=7); } void append(struct node **q,int num) { struct node *temp,*r; temp = *q; if(*q==NULL) { temp = (struct node *)malloc(sizeof(struct node)); temp->data=num; temp->link=NULL; *q=temp; } else { temp = *q; while(temp->link !=NULL) { temp=temp->link; }
  • 3. r = (struct node *)malloc(sizeof(struct node)); r->data=num; r->link=NULL; temp->link=r; } } void display(struct node *q) { if(q==NULL) { printf("nnEmpty Link List.Can't Display The Data"); getch(); goto last; } while(q!=NULL) { printf("n%d",q->data); q=q->link; } last: } int count(struct node *q) { int c=0; if(q==NULL) { printf("Empty Link List.n"); getch(); goto last; } while(q!=NULL) { c++; q=q->link; } last: return c; } void in_begin(struct node **q,int num) { struct node *temp; if(*q==NULL) { printf("Link List Is Empty.Can't Insert."); getch(); goto last; } else { temp=(struct node *)malloc(sizeof(struct node)); temp->data=num; temp->link=*q; *q=temp; /* pointing to the first node */ } last: getch(); } void in_middle(struct node **q,int loc,int num) { struct node *temp,*n; int c=1,flag=0; temp=*q; if(*q==NULL) { printf("nnLink List Is Empty.Can't Insert."); getch();
  • 4. goto last; } else while(temp!=NULL) { if(c==loc) { n = (struct node *)malloc(sizeof(struct node)); n->data=num; n->link=temp->link; temp->link=n; flag=1; } c++; temp=temp->link; } if(flag==0) { printf("nnNode Specified Doesn't Exist.Cant Enter The Data"); getch(); } else { printf("Data Inserted"); getch(); } last: getch(); } void del(struct node**q,int num) { if(*q==NULL) { printf("nnEmpty Linked List.Cant Delete The Data."); getch(); goto last; } else { struct node *old,*temp; int flag=0; temp=*q; while(temp!=NULL) { if(temp->data==num) { if(temp==*q) /* First Node case */ *q=temp->link; /* shifted the header node */ else old->link=temp->link; free(temp); flag=1; } else { old=temp; temp=temp->link; } } if(flag==0) printf("nData Not Found..."); else printf("nData Deleted...Tap a key to continue"); getch(); } last: getch();
  • 5. }