how can u create a doubly linked list with out using
pointers?

Answers were Sorted based on User's Feedback



how can u create a doubly linked list with out using pointers?..

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

how can u create a doubly linked list with out using pointers?..

Answer / shanmugavalli

Through STL List class

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More C++ General Interview Questions

How many lines of code you have written for a single program?

4 Answers   BoA,


What is the copy-and-swap idiom?

0 Answers  


Does dev c++ support c++ 11?

0 Answers  


founder of c++

7 Answers   Microtek, TCS, TeleCommand,


Do inline functions improve performance?

0 Answers  






Explain how functions are classified in C++ ?

0 Answers  


Who calls main function?

0 Answers  


What are the two types of comments?

0 Answers  


Can we change the basic meaning of an operator in c++?

0 Answers  


Are there any special rules about inlining?

0 Answers  


Difference between Overloading and Overriding?

35 Answers   Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,


What is #include math h in c++?

0 Answers  


Categories