leetcode-面试题45-把书组排成最小的数

Posted oldby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-面试题45-把书组排成最小的数相关的知识,希望对你有一定的参考价值。

技术图片

 

 方法:自定义排序:O(logn)

class Solution {
    public String minNumber(int[] nums) {
        String[] strs = new String[nums.length];
        for(int i = 0; i < nums.length; i++) 
            strs[i] = String.valueOf(nums[i]);
        Arrays.sort(strs, (x, y) -> (x + y).compareTo(y + x));
        StringBuilder res = new StringBuilder();
        for(String s : strs)
            res.append(s);
        return res.toString();
    }
}

 

以上是关于leetcode-面试题45-把书组排成最小的数的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 面试题45. 把数组排成最小的数

面试题45:把数组排成最小的数(C++)

剑指 Offer 45. 把数组排成最小的数

面试题33 把数组排成最小的数

面试题:把数组排成最小的数

[LeetCode]剑指 Offer 45. 把数组排成最小的数