把数组排成最小的树

2020-12-13 06:03

阅读:269

标签:ret   inf   pre   nbsp   begin   solution   info   +=   turn   

技术图片

 1 class Solution {
 2 public:
 3     string PrintMinNumber(vectorint> numbers) {
 4         string res;
 5         if(numbers.size()==0) return res;
 6         sort(numbers.begin(),numbers.end(),cmp);
 7         for(int i=0;i){
 8             res+=to_string(numbers[i]);
 9         }
10         return res;
11     }
12     static bool cmp(int a,int b){
13         string str1 = to_string(a);
14         string str2 = to_string(b);
15         return str1+str2 str1;
16     }
17 };

 

把数组排成最小的树

标签:ret   inf   pre   nbsp   begin   solution   info   +=   turn   

原文地址:https://www.cnblogs.com/pacino12134/p/11164617.html


评论


亲,登录后才可以留言!