码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode:

时间:2015-01-29 08:11:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

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:

标签:

原文地址:http://www.cnblogs.com/EdwardLiu/p/4257753.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!