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

what is difference between C and C++

4 Answers  


parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..

4 Answers  


what is a non volatile key word in c language?

1 Answers  


What is c definition?

0 Answers  


What does typedef struct mean?

0 Answers  


What is the difference between #include <header file> and #include “header file”?

0 Answers  


How can a string be converted to a number?

0 Answers  


write a string copy function routine?

2 Answers  


What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }

5 Answers   ADITI, Wipro,


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

0 Answers   MNC,


explain about storage of union elements.

2 Answers   ABC, Bosch,


Here is a good puzzle: how do you write a program which produces its own source code as output?

0 Answers  


Categories