Is double link list a linear data structure? If Yes, Why?If
No, Why?
Answer Posted / kiran
A data structure is said to be linear, if the elements are accessed in sequence. As the nodes of a DLL are accessed in sequence(starting from the first node, one after the other), it is a linear data structure.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is indirection in c?
What are the different types of linkage exist in c?
Who invented bcpl language?
Explain what is a pragma?
What is extern variable in c with example?
What are the 4 data types?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Is main a keyword in c?
What is the use of void pointer and null pointer in c language?
What does the format %10.2 mean when included in a printf statement?
What are pointers?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the advantages of the functions?
What is typedef?