码迷,mamicode.com
首页 > 编程语言 > 详细

把数组排成最小的树

时间:2019-07-10 16:46:47      阅读:96      评论:0      收藏:0      [点我收藏+]

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

技术图片

 1 class Solution {
 2 public:
 3     string PrintMinNumber(vector<int> numbers) {
 4         string res;
 5         if(numbers.size()==0) return res;
 6         sort(numbers.begin(),numbers.end(),cmp);
 7         for(int i=0;i<numbers.size();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 < str2+str1;
16     }
17 };

 

把数组排成最小的树

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!