没有合适的资源?快使用搜索试试~ 我知道了~
用TreeSet,添加字符串,按照长度和字母顺序排序
5星 · 超过95%的资源 需积分: 39 7 下载量 107 浏览量
2019-03-19
15:04:04
上传
评论
收藏 894B TXT 举报
温馨提示
用TreeSet添加字符串,按照字符串首字母字母顺序和字符串长度顺序排序
资源推荐
资源详情
资源评论
public class Add {
public static void main(String[] args) {
// TODO 自动生成的方法存根
TreeSet t = new TreeSet(new s());
t.add("asd");
t.add("csdwqd");
t.add("as");
t.add("bsdasdsa");
t.add("ca");
t.add("defg");
t.add("a");
Iterator it = t.iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
}
}
class s implements Comparator {
@Override
public int compare(Object a1, Object a2) {
// TODO 自动生成的方法存根
String s1 = (String) a1;
String s2 = (String) a2;
// 先比较首字母
int num = new Integer(s1.charAt(0)).compareTo(new Integer(s2.charAt(0)));
public static void main(String[] args) {
// TODO 自动生成的方法存根
TreeSet t = new TreeSet(new s());
t.add("asd");
t.add("csdwqd");
t.add("as");
t.add("bsdasdsa");
t.add("ca");
t.add("defg");
t.add("a");
Iterator it = t.iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
}
}
class s implements Comparator {
@Override
public int compare(Object a1, Object a2) {
// TODO 自动生成的方法存根
String s1 = (String) a1;
String s2 = (String) a2;
// 先比较首字母
int num = new Integer(s1.charAt(0)).compareTo(new Integer(s2.charAt(0)));
资源评论
- goodluck_people2019-11-22请问有没有TreeSet按照汉字首字母排序的方法
圣灵守望
- 粉丝: 2
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功