how can u create a doubly linked list with out using
pointers?
Answers were Sorted based on User's Feedback
Answer / ana
by multiple or single array
multiple: 3 arrays(size n) . first array for next, second
for keys and third for prev
single: 3*n size array, elements by triplets - next, key,
prev
| Is This Answer Correct ? | 5 Yes | 0 No |
What do you understand by zombie objects in c++?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
Explain what are single and multiple inheritances in c++?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Can inline functions have a recursion? Give the reason?
What is the best way to take screenshots of a window with c++ in windows?
What is the use of vtable?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is static function? Explain with an example
What is the difference between const and constexpr?
What is a storage class? Mention the storage classes in c++.
Is there any difference between int [] a and int a [] in c++?