码迷,mamicode.com
首页 > 其他好文 > 详细

常用数据结构

时间:2020-04-13 12:09:07      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:lis   iterator   常用   bsp   结构   highlight   queue   pop   +=   

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)

  

常用数据结构

标签:lis   iterator   常用   bsp   结构   highlight   queue   pop   +=   

原文地址:https://www.cnblogs.com/mychen06/p/12690278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!