×
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
1455    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.
Sri Sri Ramakrishna Paramahamsa
One cannot be spiritual as long as one has shame, hatred, or fear.
Sri Sri Ramakrishna Paramahamsa
2388
63.46
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     46745
25/06/2018     38888
01/01/2018     38548
28/06/2017     36473
02/08/2017     35191
01/08/2017     29444
06/07/2017     29201
15/05/2017     28722
14/07/2017     24572
11/09/2018     23623
softetechnologies