题解 | #两种排序方法#

两种排序方法

https://www.nowcoder.com/practice/839f681bf36c486fbcc5fcb977ffe432

import java.util.*;

public class Main {
    public static boolean isDicSort(String[] str) {
        for (int i = 0; i < str.length - 1; i++) {
            if(str[i].compareTo(str[i + 1]) > 0){
                return false;
            }
        }
        return true;
    }
    public static boolean isLenSort(String[] str) {
        for (int i = 0; i < str.length - 1; i++) {
            if (str[i].length() > str[i + 1].length()) {
                return false;
            }
        }
        return true;
    }
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        while (in.hasNext()) {
            int n = in.nextInt();
            String[] str = new String[n];
            for (int i = 0; i < n; i++) {
                str[i] = in.next();
            }
            boolean len = isLenSort(str);
            boolean dic = isDicSort(str);
            
            if(len && dic){
                System.out.println("both");
            } else if (len) {
                System.out.println("lengths");
            } else if(dic) {
                System.out.println("lexicographically");
            } else {
                System.out.println("none");
            }
        
        }
    }
}

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
2 1 评论
分享
牛客网
牛客企业服务