| size | add | delete | access | |
| vector | size() | push_back() | pop_back() | [], back() | 
| list | size() | push_back() | pop_back() | back() | 
| queue | size() | push() | pop() | back() | 
| dequeue | size() | push_back(), push_front()  | 
  pop_front(),  pop_front()  | 
  [], back() | 
| priority_queue | size() | push() | pop() | top() | 
| set | size() | iterators | iterators | iterators | 
| multiset | size() | iterators | iterators | iterators | 
| map | size() | iterators | iterators | [], iterators | 
| multimap | size() | iterators | iterators | iterators | 
Thursday, 21 August 2014
[C++] Container
Labels:
CPP
Friday, 1 August 2014
Subscribe to:
Comments (Atom)