题解 | #字符串排序#

字符串排序

https://www.nowcoder.com/practice/5190a1db6f4f4ddb92fd9c365c944584

没想到用同一大小写的方式来排序,但是想到了另一个方式来做
import java.io.IOException;
import java.util.*;

public class Main {
    public static void main(String[] args) throws IOException {
        Scanner scanner = new Scanner(System.in);
        String line = scanner.nextLine();
        char[] chars = line.toCharArray();
        Set<Integer> notWordIndex = new HashSet<>();
        String[] strs = new String[26];
        for (int i = 0; i < chars.length; i++) {
            char c = chars[i];
            if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
                int index = (c >= 'a' && c <= 'z') ? c - 'a' : c - 'A';
                String s = strs[index];
                if (s == null) {
                    strs[index] = c + "";
                } else {
                    strs[index] = s + c;
                }
            } else {
                notWordIndex.add(i);
            }
        }

        List<Character> letterList = new ArrayList<>();
        for (String s : strs) {
            if (s != null) {
                for (char c : s.toCharArray()) {
                    letterList.add(c);
                }
            }
        }
        StringBuilder result = new StringBuilder();
        for (int i = 0, j = 0; i < chars.length; i++) {
            if (notWordIndex.contains(i)) {
                result.append(chars[i]);
            } else {
                result.append(letterList.get(j++));
            }
        }
        System.out.println(result);
    }
}




全部评论

相关推荐

2024-12-04 19:53
已编辑
湖南文理学院 产品经理
牛客224543458号:他想找牛马,愿意疯狂加班的,因为要证明自己
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务