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

Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"

6 Answers   IBM,


void main() { int i=5; printf("%d",i+++++i); }

17 Answers   ME,


What is a symbolic constant?

1 Answers  


WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES

1 Answers  


In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?

5 Answers  






What is sizeof in c?

0 Answers  


Explain c preprocessor?

0 Answers  


What are c identifiers?

0 Answers  


what is the structure?

4 Answers   TCS,


What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }

5 Answers  


Can you write a programmer for FACTORIAL using recursion?

0 Answers   ADP,


what are brk, sbrk?

1 Answers   Oracle,


Categories