×
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
1274    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.
Albert Einstein
Learn from yesterday, live for today, hope for tomorrow.
Albert Einstein
1910
55.63
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43004
01/01/2018     36293
25/06/2018     34772
28/06/2017     34407
02/08/2017     32750
01/08/2017     27262
06/07/2017     27069
15/05/2017     26671
14/07/2017     22280
21/04/2018     20925
softetechnologies