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
How can I get random integers in a certain range?
How can I avoid the abort, retry, fail messages?
What is n in c?
Stimulate calculator using Switch-case-default statement for two numbers
What is a built-in function in C?
Why do we use int main?
Write a C program to count the number of email on text
Describe dynamic data structure in c programming language?
How can my program discover the complete pathname to the executable from which it was invoked?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is context in c?
Explain is it better to bitshift a value than to multiply by 2?
Explain how can I read and write comma-delimited text?
can any one provide me the notes of data structure for ignou cs-62 paper
What is a dynamic array in c?