首页 > 代码库 > Leetcode:

Leetcode:

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.

观察一下这道题,第一位最大的数应该放在前头,比如9应该放在前头,5第二,那么3、30、34又该怎么处理呢?

最开始的想法就是一位一位比过去,比如30跟34。但是比如3跟30又该怎么比呢?我已开始以为3等同于33,所以34和30的后一位跟3比就好了

但是遇到这个情况824和8247,按我的理解824<8247,但是其实相反,因为8248247 > 8247824.

这才发现是要循环的,824挨个位数比完之后,要跳回8,8247也是,7这位比完之后,要跳回8。

Leetcode: