Why is it difficult to store linked list in an array?
Answer Posted / truong
Because size of linked list is usually very large. So it is difficult to store data in a linked list in a continuously memory as an array.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the most useful programming language?
Why do we use iterators?
How do you differentiate between overloading the prefix and postfix increments?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
Why is the function main() special?
What are pointers used for c++?
Describe the setting up of my member functions to avoid overriding by the derived class?
What is a friend function in c++?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What is long in c++?
What are files in c++?
Are there interfaces in c++?
What is the use of seekg in c++?
When does a 'this' pointer get created?
Will this c++ program execute or not?