题解 | #输入整型数组和排序标识,升序或降序进行排序#

输入整型数组和排序标识,对其元素按照升序或降序进行排序

https://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Integer[] arr = new Integer[n]; //降序时Comparator接口需要包装类
        for(int i=0; i<n; i++){
            arr[i] = sc.nextInt();
        }
        int flag = sc.nextInt();

        if(flag == 0){
            Arrays.sort(arr);
        }else if(flag == 1){
            Arrays.sort(arr, new Comparator<Integer>(){
                public int compare(Integer a, Integer b){
                    return b-a;
                }
            });
        }else{
            return;
        }
        StringBuffer sb = new StringBuffer();
        for(int j=0; j<n; j++){
            sb.append(arr[j]);
            if(j < n-1){
                sb.append(" ");
            }
        }
        System.out.println(sb.toString());
    }
}

全部评论

相关推荐

11-29 11:21
门头沟学院 Java
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务