2022-4-5 高频面试题
给定一组非负整数 nums
,重新排列每个数的顺序(每个数不可拆分)使之组成一个最大的整数。
注意:输出结果可能非常大,所以你需要返回一个字符串而不是整数。
1 class Solution { 2 public String largestNumber(int[] nums) { 3 PriorityQueue<Integer> queue=new PriorityQueue<>(new Comparator<Integer>(){ 4 @Override 5 public int compare(Integer a,Integer b){ 6 int l1=0,l2=0; 7 int t1=a,t2=b; 8 if (a==0) return 1; 9 if (b==0) return -1; 10 while (a>0) { 11 a/=10; 12 l1++; 13 } 14 while (b>0){ 15 b/=10; 16 l2++; 17 } 18 if (t1*Math.pow(10,l2)+t2>t2*Math.pow(10,l1)+t1) return -1; 19 else return 1; 20 } 21 }); 22 for (int x:nums) queue.offer(x); 23 StringBuilder sb=new StringBuilder(); 24 while (!queue.isEmpty()) sb.append(queue.poll()); 25 if (sb.toString().charAt(0)=='0') return "0"; 26 return sb.toString(); 27 } 28 }
思路:定义优先队列排序。注意如果有0的排序以及最后结果都是0的情况。