×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Insert a node into a Circular Singly linked list
Forward and Reverse Display of node of a Circular Singly linked list - Link list - C Language
2012    Arnab De    27/09/2019

Display a Circular Singly linked list

We can display the data of the circular singly linklist in two process

  1. Front to end
  2. End to front

We can easily program it using recursive function

softetechnologies
#include<stdio.h>
#include<conio.h>
struct linklist
{
	int i;
	struct linklist *next;
};
typedef struct linklist node;

//prototype declaration

void ftol(node *,node *);
void ltof(node *,node *);

node *head;
int main()
{
	int c,i,pos;	
	while(1)
	{
		printf("2. First to last display\n");
		printf("3. last to First display\n");
		printf("15. Exit\n");
		printf("Enter Your choice : ");
		scanf("%d",&c);
		switch(c)
		{
			case 2:
				ftol(head,head); // First to last display
				break;
			case 3:
				ltof(head,head); // last to First display
				break;
			case 15:
				exit(0);
				
		}
	}
	return 0;	
}
softetechnologies
void ftol(node *l,node *h)
{
	if(l->next!=h)
	{
		printf("%d\n",l->i);
		ftol(l->next,h);
	}
	else
	{
		printf("%d\n",l->i);
	}
}
void ltof(node *l,node *h)
{
	if(l->next!=h)
	{
		ltof(l->next,h);
		printf("%d\n",l->i);
	}
	else
	{
		printf("%d\n",l->i);
	}
}
softetechnologies
Insert a node into a Circular Singly linked list
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
We come nearest to the great when we are great in humility.
Rabindranath Tagore
2563
84.18
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54669
25/06/2018     45774
01/01/2018     44021
28/06/2017     41549
02/08/2017     40656
01/08/2017     34647
06/07/2017     34423
15/05/2017     33648
11/09/2018     31125
14/07/2017     30487
softetechnologies