📅  最后修改于: 2022-03-11 14:44:57.479000             🧑  作者: Mango
std::vector v;
std::sort(v.begin(), v.end(), []
(const std::string& first, const std::string& second){
return first.size() < second.size();
});