cherrychenlee

导航

 

原文地址:https://www.jianshu.com/p/8559dfe2a397

时间限制:1秒 空间限制:32768K

题目描述

输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。

我的代码

class Solution {
public:
    string PrintMinNumber(vector<int> numbers) {
        string res;
        if(numbers.size()<1)
            return res;
        sort(numbers.begin(),numbers.end(),cmp);
        res="";
        for(int i=0;i<numbers.size();i++)
            res+=to_string(numbers[i]);
        return res;
    }
    static bool cmp(int a,int b){
        string A="",B="";
        A+=to_string(a);A+=to_string(b);
        B+=to_string(b);B+=to_string(a);
        return A<B;
    }
};

运行时间:3ms
占用内存:484k

posted on 2019-05-06 21:33  cherrychenlee  阅读(72)  评论(0编辑  收藏  举报