×
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
1929    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
It is no easy task to lead men. But it is easy enough to drive them.
Rabindranath Tagore
1023
79.53
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53858
25/06/2018     44927
01/01/2018     43509
28/06/2017     41078
02/08/2017     40051
01/08/2017     34098
06/07/2017     33929
15/05/2017     33179
11/09/2018     29957
14/07/2017     29639
softetechnologies