Question d’entretien chez Nokia

Explain the difference between vector and list in C++.

Réponse à la question d'entretien

Utilisateur anonyme

28 oct. 2025

I explained that vector provides contiguous memory with fast random access but slower insertions/deletions in the middle, while list is a doubly linked list with fast insertions/deletions anywhere but slower random access.