What is a Genralised LInked List??
Please give a detailed explation of it..

Answer Posted / mailkbala

Generally, there are two kind of linked list.
i) Single Linked List and
ii) Double Linked List.

In single Linked List, you can move only in forward
direction using the address of the next node. Each node
contains two fields namely Data and Address of Next node.

In Double Linked List, you can move in both forward and
reverse direction using the address of the next node and
previous node respectively. Here each node contains three
fields namely Data, Address of next node, and Address of
Previous node.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is static and volatile in c?

775


Is boolean a datatype in c?

541


What is the difference between malloc() and calloc()?

613


What is adt in c programming?

607


How are 16- and 32-bit numbers stored?

719






Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5053


What is file in c language?

574


What is the advantage of a random access file?

637


Can you tell me how to check whether a linked list is circular?

763


Where are the auto variables stored?

622


What is extern storage class in c?

509


Distinguish between actual and formal arguments.

587


write a c program for swapping two strings using pointer

2090


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4737


What is function what are the types of function?

554