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
What is formal argument?
Which built-in library function can be used to match a patter from the string?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is scope of variable in c?
Why is python slower than c?
What is array of structure in c programming?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Differentiate between a for loop and a while loop? What are it uses?
Do you know what are bitwise shift operators in c programming?
Explain is it better to bitshift a value than to multiply by 2?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Is swift based on c?
What does char * * argv mean in c?
What is a global variable in c?