【Leetcode】179. Largest Number(sort排序)

Given a list of non negative integers, arrange them such that they form the largest number.

Example 1:

Input: [10,2]
Output: "210"

Example 2:

Input: [3,30,34,5,9]
Output: "9534330"

题目大意:

找出给出数组中int类型的数,能够排列成最大的十进制数。注:会出现全0

解题思路:

将int转成string

C++sort中比较函数为:

struct cmp{
      bool operator()(const string& lhs, const string& rhs){
          return lhs + rhs > rhs + lhs;
      }  
};

不用多解释了,就个这写了1个小时,丧:-(

 

class Solution {
private:
    vector<string> c;
    void helper(vector<int> tmp){
        for(int i=0;i<tmp.size();i++){
            int t = tmp[i];
            string st;
            if(t==0) st = '0';
            while(t){
                st += ('0'+(t%10));
                t = t/10;
            }
            reverse(st.begin(), st.end());
            c.push_back(st);
        }
    }
    struct cmp{
      bool operator()(const string& lhs, const string& rhs){
          return lhs + rhs > rhs + lhs;
      }  
    };
public:
    string largestNumber(vector<int>& nums) {
        helper(nums);
        sort(c.begin(), c.end(), cmp());
        string ans;
        for(int i=0;i<c.size();i++){
            ans += c[i];
        }
        if(ans[0]=='0') return "0";
        return ans;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值