常用数据结构
Posted mychen06
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用数据结构相关的知识,希望对你有一定的参考价值。
string:
string substr(int pos , int n) ; int find(string s , int pos) ; int find(char c , int pos) ; int find_first_of(strng s , int pos) ;
int find_first_of(string s , int pos) ;
char back() ;
push_back() ; pop_back();
+=
vector:
stack:
empty top() ; pop() ; push() ;
queue:
empty() ; front() ; pop() ; push() ;
priority_queue:
push pop top();
map:
count erase
lower_bound
upper_bound
erase
deque:
push_back push_front() pop_back() pop_front()
unordered_map:
set:
unordered_set:
list:
begin() end() front() back() push_front() pop_front() push_back() pop_back() insert(iterator , val) iterator erase(iterator)
以上是关于常用数据结构的主要内容,如果未能解决你的问题,请参考以下文章