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

/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*

6 Answers  


What are signals in C?

2 Answers  


Explain what is the difference between the expression '++a' and 'a++'?

1 Answers  


What is difference between scanf and gets?

1 Answers  


EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>

4 Answers  


what is the difference between c and c++?

7 Answers  


What does the && operator do in a program code?

1 Answers  


What is a good data structure to use for storing lines of text?

1 Answers  


c programming of binary addition of two binary numbers

4 Answers  


Can a pointer be null?

1 Answers  


What are the types of pointers?

1 Answers  


what is the difference between exit() and _exit() functions?

2 Answers  


Categories