954,506 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

What Is Linkedlist In C

Hi

I want to know about the use of linked list in C and also about its working and syntax.
Please tell me about this.

adikesan
Newbie Poster
2 posts since Nov 2007
Reputation Points: 10
Solved Threads: 0
 

This is not a question for a help forum. This is something you should get from a book, instructor, or tutorial. We can help once you understand the concepts.

WaltP
Posting Sage w/ dash of thyme
Moderator
10,506 posts since May 2006
Reputation Points: 3,348
Solved Threads: 944
 
Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

Try this tutorial . Though I get the sinking feeling that it's not suited for you. :icon_rolleyes:

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

first u should know something about that so refer it first and share your ideas.

m4must
Newbie Poster
2 posts since Nov 2007
Reputation Points: 10
Solved Threads: 0
 
first u should know something about that so refer it first and share your ideas.

Differing a bit over here, you must be very much clear about the basics and you must be specific regarding what doubt/s you have.

Jishnu
Posting Pro
518 posts since Oct 2006
Reputation Points: 193
Solved Threads: 25
 

List is a collection of short pieces of information, such as names of people usually written
with a single item on each line and often ordered in a way that makes a particular item easy to find.There are two ways of maintaining this list in computer memory.First is to take an array to store the elements and second is the linklist.The second way for implementing a list in a memory is to use a structure which is a self referential structure .One member of this structure is a pointer that points to the structure itself.

struct node {
int data;
struct node *link;
};
here member of the structure struct node *link points to the structure itself.This type of structure is called a link list.A linklist is a collection of nodes .Each node has two parts,first part contains information field and second part contains the address of the next field.The address part of the last node of linklist will have a NULL value

rajusankar28
Newbie Poster
3 posts since Nov 2007
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You