STL的一些东西

二分查找

1 lower_bound(begin(),end(),t)//大于等于t的第一个数的地址
2 upper_bound(begin(),end(),t)//大于t的第一个数的地址
二分查找

小根堆

1 priority_queue<int,vector<int>,greater<int> >Q;
小根堆

 

posted @ 2017-11-19 15:09  ChenThree  阅读(93)  评论(0编辑  收藏  举报