Explain Doubly Linked Lists?

Answers were Sorted based on User's Feedback



Explain Doubly Linked Lists?..

Answer / nashiinformaticssolutions

A specific kind of linked list that allows traversal across the data components in both directions is called a doubly linked list.
Every node has two linkages, one to the node next to it and one to the node in front of it, which enables accomplishing this.

Is This Answer Correct ?    0 Yes 0 No

Explain Doubly Linked Lists?..

Answer / glibwaresoftsolutions

A specific kind of linked list that allows traversal across the data components in both directions is called a doubly linked list.
Every node has two linkages, one to the node next to it and one to the node in front of it, which enables accomplishing this.

Is This Answer Correct ?    0 Yes 0 No

Explain Doubly Linked Lists?..

Answer / hr@tgksolutions.com

A specific kind of linked list that allows traversal across the data components in both directions is called a doubly linked list.
Every node has two linkages, one to the node next to it and one to the node in front of it, which enables accomplishing this.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

? ???Mirror Mirror on the wall????????

1 Answers   channel V, DPI,


How do I use strcmp?

0 Answers  


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Lucent,


Differentiate between #include<...> and #include '...'

0 Answers  


What are predefined functions in c?

0 Answers  


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


what is the disadvantage of using macros?

1 Answers   Wipro,


What does static variable mean in c?

0 Answers  


what is the function of .h in #include<stdio.h> in c ?

23 Answers   HCL, IBM, Wipro,


find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }

10 Answers   Amdocs, TCS,


write a program in c to print **** * * * * ****

1 Answers   TCS,


What is the use of #define preprocessor in c?

0 Answers  


Categories