头文件<algorithm>
<algorithm>
从小到大
sort(begin,end)
从大到小
sort(begin,end,compare) bool compare(int a,int b) { return a>b; //如果改为return a<b,则为从小到大 }`