摘要: C++ sort sort是C++ STL(Standard template library)提供的排序函数,它可以为普通函数或者容器中指定范围内的元素进行排序。默认为升序排序,排序的区间左闭右开。 使用标准库(STL)提供的比较规则 vector<int> a(n); //.... sort(a.begin(), 阅读全文
posted @ 2022-12-13 21:35 何太狼 阅读(59) 评论(0) 推荐(0) 编辑