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 |
No comments:
Post a Comment