题目描述
输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。
1 class Solution { 2 public: 3 string PrintMinNumber(vector nums){ 4 string res; //返回值 5 sort(nums.begin(),nums.end(),[](const int &m, const int &n){ return to_string(m) + to_string(n) < to_string(n) + to_string(m); } ); 6 for(int i=0; i