STL
文章平均质量分 78
lrj124
这个作者很懒,什么都没留下…
展开
-
noip普及组2004 火星人
STL大法#include #include using namespace std;//ifstream cin("martian.in",ios :: in);//ofstream cout("martian.out",ios :: out);int n,m,a[10001];int main() { ios :: sync_with_stdio(false); cin原创 2016-12-27 14:09:42 · 1119 阅读 · 0 评论 -
STL sort函数的用法
sort在STL库中是排序函数,有时冒泡、选择等O(N^2)算法会超时时,我们可以使用STL中的快速排序O(N log N)完成排序sort在库里面,原型如下:template void sort ( RandomAccessIterator first, RandomAccessIterator last );template void sort ( RandomAcc原创 2017-07-29 13:06:50 · 225 阅读 · 0 评论