[10-4, 10-4-8, 12-18-7, 12-18-2, 12-18-3, 12-18-4, 12-18-5, 6-4-1, 12-3-10, 10-6-7-4-3, 10-6-7-4-2, 12-3-12, 10-6-7-4-1, 12-3-11, 7-78-1-7, 7-78-1-6, 12-71-4, 12-71-3, 12-71-2, 12-3-14, 7-78-1-3, 12-3-13]排序前
[6-4-1, 7-78-1-3, 7-78-1-6, 7-78-1-7, 10-4, 10-4-8, 10-6-7-4-1, 10-6-7-4-2, 10-6-7-4-3, 12-3-10, 12-3-11, 12-3-12, 12-3-13, 12-3-14, 12-18-2, 12-18-3, 12-18-4, 12-18-5, 12-18-7, 12-71-2, 12-71-3, 12-71-4]排序后
list中的像10-2-8-10这样的数据怎么排序
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
4条回答 默认 最新
- _Mr.Tree 2021-07-19 18:55关注
import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class Test { public static void main(String[] args) { List<String> arr = new ArrayList<>(); arr.add("10-4"); arr.add("10-4-8"); arr.add("12-18-7"); arr.add("10-6-7-4-3"); Collections.sort(arr,new SelfDefineComparator()); for(String s: arr){ System.out.println(s); } } // 自定义比较规则 static class SelfDefineComparator implements Comparator<String>{ @Override public int compare(String o1, String o2) { String[] o1Split = o1.split("-"); String[] o2Split = o2.split("-"); for(int i=0; i<o1Split.length; i++) { int o1Int = Integer.parseInt(o1Split[i]); // o2比o1短且前面相同,则o2要在o1前面,也就是o2<o1,比如 o2:10-3 o1:10-3-5 if(i == o2Split.length){ return 1; } int o2Int = Integer.parseInt(o2Split[i]); // o1大于o2,o1要在o2前面 if(o1Int > o2Int){ return 1; // o1小于o2,o1要在o2后面 }else if(o1Int < o2Int){ return -1; } } // 否则就是全部相同,不交换 return 0; } } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥20 白日门传奇少一个启动区服和启动服务器的快捷键,东西都是全的 , 他们说套一个出来就行了 但我就是弄不好,谁看看,
- ¥100 如何用js写一个游戏云存档
- ¥15 ansys fluent计算闪退
- ¥15 有关wireshark抓包的问题
- ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
- ¥15 向数据表用newid方式插入GUID问题
- ¥15 multisim电路设计
- ¥20 用keil,写代码解决两个问题,用库函数
- ¥50 ID中开关量采样信号通道、以及程序流程的设计
- ¥15 U-Mamba/nnunetv2固定随机数种子