Skip to main content

Deletion of first node in circular link list

Deletion of first node from the circular link list requires that the list has at least one node. It is error to delete a node doesn't exist. In this process, last node's next pointer is updated to point to second node of the list. Now we will see the algorithm to delete node at first position in circular link list.

Algorithm to delete first node in circular link list:

The algorithm uses TAIL as pointer to the last node of circular list and TEMP is temporary pointer that help in deletion process. The steps are as follows:
  • Declare TEMP
  • If list have only one node
    • FREE (TAIL)
    • TAIL = NULL
  • Else
    • TEMP = TAIL->NEXT  [TEMP will point to first node]
    • TAIL->NEXT = TAIL->NEXT->NEXT [TAIL's next will now point to second node]
    • Free (TEMP) [free the first node]
  • End If;

Function to delete node at first position in circular link list:

The function takes pointer to last node as input and return info part of the list if no error occur, otherwise returns -1 after printing error massage:

int deleteFirst(NODE **tail){
 NODE *temp;
 int info = -1;
 if(*tail == NULL){
  printf("\nError : List have no node");
 }
 else{
  if(*tail == (*tail)->next){ // one node
   temp = *tail;
   *tail = NULL;
  }
  else{
   temp = (*tail)->next;
   (*tail)->next = (*tail)->next->next;
  }
  info = temp->info;
  free(temp);
 }
 return info;
}


Program to delete node at first position in the circular link list:


#include <stdio.h>
#include <malloc.h>

struct node{
 int info;
 struct node *next;
};
typedef struct node NODE;

void insertAtFirst(NODE **, int);
int deleteFirst(NODE **);
void traverse(NODE **);

int main(){
 
 NODE *tail = NULL;
 
 insertAtFirst(&tail, 1); //1
 insertAtFirst(&tail, 2); //2  1 
 insertAtFirst(&tail, 3); //3  2  1
 traverse(&tail); // 3 2  1
 printf("\n");
 deleteFirst(&tail); // 2  1
 traverse(&tail);
 
 printf("\n");
 deleteFirst(&tail); // 1
 traverse(&tail);
 
 deleteFirst(&tail); // 
 deleteFirst(&tail); // no nodes
 traverse(&tail);
 
 return 0;
}

int deleteFirst(NODE **tail){
 NODE *temp;
 int info = -1;
 if(*tail == NULL){
  printf("\nError : List have no node");
 }
 else{
  if(*tail == (*tail)->next){ // one node
   temp = *tail;
   *tail = NULL;
  }
  else{
   temp = (*tail)->next;
   (*tail)->next = (*tail)->next->next;
  }
  info = temp->info;
  free(temp);
 }
 return info;
}

void insertAtFirst(NODE **tail, int info){
 NODE *ptr = (NODE*) malloc(sizeof(NODE));
 ptr->info = info;
 if(*tail == NULL){
  ptr->next = ptr;
  *tail = ptr;
 }
 else{
  ptr->next = (*tail)->next;
  (*tail)->next = ptr;
 }
}

void traverse(NODE **tail){
 NODE *temp;
 temp = *tail;
 if(*tail){
  do{
   printf("%d  ", temp->next->info);
   temp = temp->next;
  } while(temp != *tail);
 }
}


3  2  1
2  1
1
Error : List have no node



Comments

Popular posts from this blog

Prefix to Infix Conversion

With a given Prefix Expression, we will see how to convert Prefix Expression into Infix Expression using stack.   Algorithm to convert Prefix Expression to Infix Expression: In this algorithm, we will use stack to store operands during the conversion. The step are as follows: Read the prefix string While the end of prefix string scanned from right to left symb = the current character If symb is an operator poped_sym1 = pop the stack poped_sym2 = pop the stack concat the string  STR = ( poped_sym1 )+ ( operator )+( poped_sym2 ) push the string STR into stack Else push the operand symb into stack End If End While infix_str = pop the stack   Function to convert Prefix Expression to Infix Expression: void prefix_to_infix(char prefix[], char infix[]){ char op[2]; //operator string char poped1[MAX]; char poped2[MAX]; char temp[MAX]; int i = strlen(prefix); op[1] = '\0'; while(--i != -1){ if(prefix[i] == ' '){ continue; } if(isoper...

Concatenating two link list

Here we will see how to concat two single link list into other link list. First we copy the content of first list in third list and then the content of second list into third list. Algorithm for concatenation of two link list: This algorithm will use three list. List 1 and List 2 will be concatenated into List 3. The step below: Copy the list 1 into list 3 Copy the list 2 at the last of list 3 Function to concat two link list: void concatLists(NODE **start1, NODE **start2, NODE **mergeinto){ NODE *temp; temp = *start1; while(temp != NULL){ insertAtLast(&*mergeinto, temp->info); temp = temp->next; } temp = *start2; while(temp != NULL){ insertAtLast(&*mergeinto, temp->info); temp = temp->next; } }   Program to concat two link lists: #include <stdio.h> #include <malloc.h> struct node{ int info; struct node *next; }; typedef struct node NODE; void insertAtLast(NODE **, int); void traverse(NODE **); void concatLists(NODE **,...

Implementation of Stack to store different data types

Here we will see how to implement stack using structure and union to store different datatypes in stack. First we define the basic structure for elements/items to be stored in the stack. struct Items{ int ele_type; union { int ivalue; float fvalue; char *strvalue; } stack_element; }; In the above code, we have defined a Items structure to store the info about the type of items in ele_type variable and a union variable named stack_element to store the actual value of stack items. In union the, ivalue is used to store the integer value, fvalue to store floating value and strvalue to store the string value. If you wish to add other datatype, you can add any datatype within the union. Now we will define the structure to implement the stack. The code below: struct Stack{ int top; struct Items element[MAX]; }; In the above code, struct Stack is defined to hold the top of stack and the array of Items structure named element to hold the actual Items defined above. MA...