how can u create a doubly linked list with out using
pointers?
Answer Posted / 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 |
Post New Answer View All Answers
What is the default width for ouputting a long integer using the insertion operator?
Can I learn c++ without knowing c?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What do you mean by static variables?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Define what is constructor?
What is the c++ programming language used for?
Can we use this pointer inside static member function?
Write about the scope resolution operator?
Tell me what are static member functions?
What is the use of vtable?
What is pointer to member?
What is pure virtual function? Or what is abstract class?
What is operator overloading in c++ example?
You want to link a c++ program to c functions. How would you do it?