1、排序
#include <algorithm>
#include <functional>
sort(array.begin(), array.end(), less<int>());//升序排序 greater<int>()降序排序
1、排序
#include <algorithm>
#include <functional>
sort(array.begin(), array.end(), less<int>());//升序排序 greater<int>()降序排序
转载于:https://www.cnblogs.com/wangbin-heng/p/9532622.html