32.把数组排成最小的数——剑指offer
题目描述
输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。
1 class Solution { 2 public: 3 string PrintMinNumber(vector<int> numbers) { 4 sort(numbers.begin(),numbers.end(),[](const int& a,const int& b){ 5 return to_string(a)+to_string(b)<to_string(b)+to_string(a);}); 6 string res; 7 for (auto c:numbers) 8 res+=to_string(c); 9 return res; 10 } 11 };