Circular linked list Insert at First

  1. #include<stdio.h>  
  2. #include<conio.h>  
  3. #include<stdlib.h>  
  4. typedef struct node{  
  5.     int data;  
  6.     struct node* next;  
  7. }node;  
  8. struct node* head;  
  9. void insertCircularAtFront(int x)  
  10. {  
  11.     struct node* temp=NULL;  
  12.     temp=(node*)malloc(sizeof(struct node));  
  13.     temp->data=x;  
  14.     if(head==NULL)  
  15.     {  
  16.         head=temp;  
  17.         temp->next=head;       
  18.     }  
  19.     else  
  20.     {  
  21.         struct node* last=head;  
  22.         while(last->next!=head)  
  23.         {  
  24.             last=last->next;  
  25.         }  
  26.         struct node* temp2=NULL;  
  27.         temp2=(node*)malloc(sizeof(struct node));  
  28.         temp2->data=x;  
  29.         temp2->next=head;  
  30.         head=temp2;  
  31.         last->next=head;           
  32.     }  
  33. }  
  34. void print()  
  35. {  
  36.     struct node* temp=head;  
  37.     while(temp->next !=head)  
  38.     {  
  39.         printf("%d",temp->data);  
  40.         temp=temp->next;  
  41.     }  
  42.     while(temp->next ==head)  
  43.     {  
  44.         printf("%d",temp->data);  
  45.         temp=temp->next;  
  46.     }  
  47.   
  48. }  
  49. void main()  
  50. {  
  51.     insertCircularAtFront(2);  
  52.     insertCircularAtFront(3);  
  53.     insertCircularAtFront(4);  
  54.     insertCircularAtFront(5);  
  55.     print();  
  56.     getch();  
  57. }