Answer Posted / truong nguyen
Memory address of items in the array are continues but they
are not continues in the linked list. So you will easily to
access one item in an array, but not for a linked list.
However, you can easily insert or remove one item into/from
a linked list.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are the rules about using an underscore in a c++ identifier?
Is c++ pass by reference or value?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Explain the uses of static class data?
What is meant by the term name mangling in c++?
What is DlgProc?
What kind of problems can be solved by a namespace?
What is a hashmap c++?
What is the purpose of template?
Explain the use of this pointer?
total amount of milk produced each morning and then calculates and outputs the number of cartons needed for this milk , the cost of producing the milk and the profit from producing this milk.
Can we make copy constructor private in c++?
What is type of 'this' pointer?