问题详见: Largest Number
题目是给出一个非负整数数组,将他们组合成最大的整数。题目描述如下:
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.
解题思路:
由于题目中所给数组均为非负整数,所以可以直接将其转换为字符串并将其依照相邻两个字符串拼接按照逆字典序进行排序拼接并直到所有相邻的字符串都满足拼接的最大要求,那么这个字符串形成的数组整个拼接起来就是所求的最大整数(字符串形式)。然而还要考虑一个特例就是有若干个0的数组组成的最大数为0,而不是00或者00…00。整个算法复杂度主要集中在排序那里,复杂度为