Page 1 of 1

How the list differs from vectors?

Posted: Wed Jul 13, 2022 7:53 pm
by answerhappygod
a) Vector is contiguous whereas List is non-contiguous
b) Insertion in the list takes constant time whereas it is not constant in vectors
c) There is no capacity defined for list
d) All of the mentioned