把数组排成最小的数

55 篇文章 0 订阅
43 篇文章 0 订阅

题目描述

输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。
思路:
1、对vector容器内的数据进行排序,按照 将a和b转为string后 
2、若 a+b<b+a  a排在在前 的规则排序,
如 2 21 因为 212 < 221 所以 排序后为 21 2  
3、to_string() 可以将int 转化为string

class Solution {
public:
    string PrintMinNumber(vector<int> numbers){
        int len = numbers.size();
        if(len == 0)
            return "";
        if(len == 1)
            return to_string(numbers[0]);
        
        vector<string> temp;
        for(int i = 0; i < len; i++)
            
            
            
            temp.push_back(to_string(numbers[i]));
        
        sort(temp.begin(),temp.end(),compare);
        string res;
        for(int j = 0; j < len; j++){
            res += temp[j];
        }
        return res;
    }
    static bool compare(string str1, string str2){
        string comp1 = str1 + str2;
        string comp2 = str2 + str1;
        
        return comp1 < comp2; //升序排列
    }
};










评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值