首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
l2785专题
L2785(Java). 将字符串中的元音字母排序
题目 1.如何以char类型便利字符串 2.自定义优先队列解决 class Solution {public String sortVowels(String s) {Map<Character,Integer> m= new HashMap<>();m.put('a',1);m.put('e',1);m.put('i',1);m.put('o',1);m.put('u',1);m.put('
阅读更多...