Explain Doubly Linked Lists?

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the difference between a free-standing and a hosted environment?

992


What does 4d mean in c?

1205


What is the difference between printf and scanf in c?

993


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2126


Explain a file operation in C with an example.

870


What is the difference between typedef struct and struct?

821


What are the applications of c language?

830


What is a spanning Tree?

1221


Explain zero based addressing.

772


How can I ensure that integer arithmetic doesnt overflow?

812


Why do some versions of toupper act strangely if given an upper-case letter?

824


How is = symbol different from == symbol in c programming?

792


which type of aspect you want from the student.

1895


How can I use a preprocessorif expression to ?

772


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5192