+ 3
vector vs deque
Talking about efficiency. What is the difference between these two containers vector and deque?
1 Resposta
+ 3
vector has efficient insertion at the end
deque ( double ended queue ) has efficient at begining and end
Talking about efficiency. What is the difference between these two containers vector and deque?