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 |
Are there any new intrinsic (built-in) data types?
which of the following is not an secondary constant a) array b) real c) union
Explain the concept of copy constructor?
Write the program form Armstrong no in c++?
what is pulse code modulation?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
Write a recursive program to calculate factorial in c++.
What is virtual base class?
what is a reference variable in C++?
what is the use of templates?
Explain what are accessor methods?
Define virtual constructor.