×
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
944    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
It is easy to talk on religion, but difficult to practice it.
Sri Sri Ramakrishna Paramahamsa
949
46.7
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     38392
01/01/2018     35122
28/06/2017     32817
25/06/2018     31210
02/08/2017     30877
15/05/2017     25586
01/08/2017     25363
06/07/2017     24875
14/07/2017     20613
21/04/2018     19984
softetechnologies