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

zenefits oa - sort integer array in lexographical order

时间:2016-02-01 15:06:31      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

[ 12 | 2434 | 23 | 1 | 654 | 222 | 56 | 100000 ]

Then the output should be:

[ 1 | 100000 | 12 | 222 | 23 | 2434 | 56 | 654 ]

建立自己的comparator:

Comparator<Integer> intLexCompare = new Comparator<Integer>() {
  int compareTo( Integer x, Integer y) {
      return x.toString().compareTo(y.toString();
  }
}  

Arrays.sort(nums, intLexCompare);

zenefits oa - sort integer array in lexographical order

标签:

原文地址:http://www.cnblogs.com/marc-leetcode/p/5175009.html

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