LeetCode——Largest Number

Description:

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

For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.

Note: The result may be very large, so you need to return a string instead of an integer.

把所给的数字排列成最大的数,首先想到的思路是按位比较,但是那样比较麻烦而且容易出BUG,所以还有一种简单的思路就是在排序的时候比较两种情况前后排列取结果最大的那种顺序。代码少好理解。

public class Solution { 
    public String largestNumber(int[] nums) {
       ArrayList<Number> list = new ArrayList<Number>();
       for(int i : nums) {
           list.add(new Number(i+""));
       }
       Collections.sort(list);
       StringBuilder sb = new StringBuilder();
       for(int i=list.size()-1; i>=0; i--) {
           sb.append(list.get(i).val);
       }
       java.math.BigInteger b = new java.math.BigInteger(sb.toString());
       return b.toString();
    }
}
class Number implements Comparable<Number> {
    String val;
    public Number(String val) {
        this.val = val;
    }
    public int compareTo(Number n) {
        java.math.BigInteger a = new java.math.BigInteger(this.val + n.val);
        java.math.BigInteger b = new java.math.BigInteger(n.val + this.val);
        return a.compareTo(b);
    }
}

 

转载于:https://www.cnblogs.com/wxisme/p/4601330.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值