题解 | #字符串排序#

字符串排序

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

基数排序

过滤掉字符,进行基数排序,由于要考虑大小写出现的顺序,使用链表记录每一个字符,到时候按序输出即可。

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNext()) {
            String s = in.nextLine();
            
            // 记录字母排序,类似基数排序
            List<List<Character>> buckets = new ArrayList<>();
            for(int i = 0; i < 26; i++) {
                buckets.add(new ArrayList<>());
            }
            char[] str = s.toCharArray();
            for(int i = 0; i < str.length; i++) {
                char ch = str[i];
                if(Character.isLetter(ch))
                    buckets.get(Character.toLowerCase(ch) - 'a').add(ch);
            }

            int buck = 0;
            int buckId = 0;
            for(int i = 0; i < str.length; i++) {
                if(Character.isLetter(str[i])) {
                    while(buckId >= buckets.get(buck).size()) {
                        // 寻找下一个桶
                        buck++;
                        buckId = 0;
                    }

                    // 直接修改数组
                    str[i] = buckets.get(buck).get(buckId++);
                }
            }

            System.out.println(String.valueOf(str));
        }
    }
}

全部评论

相关推荐

拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务