把数组排成最小的数
Last updated
Last updated
问题简述
xxx
输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。
示例 1:
输入: [10,2]
输出: "102"
示例 2:
输入: [3,30,34,5,9]
输出: "3033459"
提示:
0 < nums.length <= 100
说明:
输出结果可能非常大,所以你需要返回一个字符串而不是整数
拼接起来的数字可能会有前导 0,最后结果不需要去掉前导 0
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
算法基于以下结论:若 x + y < y + x
则 x
应该排在 y
前面/左边;
关于该结论的证明详见:把数组排成最小的数
根于该规则对 nums
排序后拼接即可;
import functools
class Solution:
def minNumber(self, nums: List[int]) -> str:
def cmp(x1, x2):
if x1 + x2 < x2 + x1:
return -1
elif x1 + x2 > x2 + x1:
return 1
else:
return 0
# Python3 的 sort 中取消了 cmp 参数,需要通过 functools.cmp_to_key 转换
nums = sorted([str(x) for x in nums], key=functools.cmp_to_key(cmp))
# print(nums)
return ''.join(nums)
class Solution:
def minNumber(self, nums: List[int]) -> str:
nums = [str(x) for x in nums]
def qsort(lo, hi):
if lo >= hi: return
i, j = lo, hi
while i < j:
while nums[j] + nums[lo] >= nums[lo] + nums[j] and i < j: j -= 1
while nums[i] + nums[lo] <= nums[lo] + nums[i] and i < j: i += 1
nums[i], nums[j] = nums[j], nums[i]
nums[i], nums[lo] = nums[lo], nums[i]
qsort(lo, i - 1)
qsort(i + 1, hi)
qsort(0, len(nums) - 1)
return ''.join(nums)