×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Create and insert node in a linear link list using C
Link List Fundamentals - using C - Link list - C Language
1874    Arnab De    23/08/2019

What is linklist?

A linked list is a linear dynamic data structure which is a collection of small block, known as node. A node has two parts 

  1. Data Part
  2. Reference Part (self-reference)

Four types of linklist is possible

  1. Single linear linklist
  2. Single Circular linklist
  3. Double linear linklist
  4. Double Circular linklist
softetechnologies

Single linear linklist

Single LinkList

				    struct linklist
                    {
                    	int i;
                    	struct linklist *next;
                    };
                

Double linear linklist

Double LinkList

  
				    struct dlinklist
                    {
                    	int i;
                    	struct linklist *prev;
                    	struct linklist *next;
                    };
                
softetechnologies
Create and insert node in a linear link list using C
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
Don't limit a child to your own learning, for he was born in another time.
Rabindranath Tagore
1489
79.49
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53834
25/06/2018     44915
01/01/2018     43494
28/06/2017     41068
02/08/2017     40046
01/08/2017     34089
06/07/2017     33920
15/05/2017     33173
11/09/2018     29919
14/07/2017     29627
softetechnologies