Explain Doubly Linked Lists?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is conio h in c?
What are the 4 types of functions?
What is NULL pointer?
What are the advantages of using macro in c language?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What language is lisp written in?
Does c have enums?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Write a program to exchange two variaables without temp
How can I send mail from within a c program?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is the size of array float a(10)?