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



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

Answer / 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

More C Interview Questions

Explain how do you print an address?

0 Answers  


What is the memory allocated by the following definition ? int (*x)[10];

4 Answers   ADITI, Wipro,


mplementation of stack using any programing language

1 Answers   Marlabs,


What is the description for syntax errors?

0 Answers  


What are the types of type qualifiers in c?

0 Answers  






What are the types of bitwise operator?

0 Answers  


What is difference between scanf and gets?

0 Answers  


If the size of int data type is two bytes, what is the range of signed int data type?

0 Answers  


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


How will you allocate memory to a double pointer ?

2 Answers  


How can I read a directory in a C program?

2 Answers   Bright Outdoor, Wipro,


Why n++ execute faster than n+1 ?

2 Answers  


Categories