×
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
763    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.
Dalai Lama
When educating the minds of our youth, we must not forget to educate their hearts.
Dalai Lama
3207
38.7
Today So Far
Total View (Lakh)
softetechnologies
01/01/2018     34306
28/06/2017     30941
26/05/2018     30855
02/08/2017     28850
25/06/2018     26169
15/05/2017     24599
01/08/2017     23448
06/07/2017     23179
21/04/2018     19206
14/07/2017     18465
softetechnologies