一.题目
输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。
https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof/
二.代码
class Solution {
public:
string minNumber(vector<int>& nums) {
vector<string> strs;
string ret;
for(auto e : nums)
strs.push_back(to_string(e));
sort(strs.begin(), strs.end(), cmp);
for(auto e : strs)
ret += e;
return ret;
}
static bool cmp(const string& a, const string& b)
{
return a + b < b + a;
}
};