标签:begin 一个 条件 元素 tor 字符 static str numbers
class Solution { public: static bool cmp(int a, int b){ //利用字符串比较的优势 如果a在前面小 就true string A = to_string(a) + to_string(b); string B = to_string(b) + to_string(a); return A < B; } string PrintMinNumber(vector<int> numbers) { int len = numbers.size(); if(len == 0) return ""; //按 cmp的方法来排序 sort(numbers.begin(), numbers.end(), cmp); //排完序之后,局部满足条件 也就最终所有满足条件 string res; for(int i = 0; i < len; i++){ res += to_string(numbers[i]); } return res; } };
标签:begin 一个 条件 元素 tor 字符 static str numbers
原文地址:https://www.cnblogs.com/Stephen-Jixing/p/13129893.html