摘要: std::sort(vector.begin(),vector.end(),[](int a,int b){ if(a==1)return false;//a为1就将这个1排在最后,因为返回的是false if(b==1)return true;//还是将1排在最后 return a>b;//降序排 阅读全文
posted @ 2023-10-07 13:56 iu本u 阅读(105) 评论(0) 推荐(0)