博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排序的两种方式一是implement comparable接口,二是重写Comparator方法
阅读量:5247 次
发布时间:2019-06-14

本文共 927 字,大约阅读时间需要 3 分钟。

第一种

static class T implements Comparable<T>{

private String name;
private int count;
public T(String name, int count) {
super();
this.name = name;
this.count = count;
}
public String getName() {
return name;
}

public void setName(String name) {

this.name = name;
}

public int getCount() {

return count;
}

public void setCount(int count) {

this.count = count;
}

@Override

public String toString() {
return name+"_"+count;
}
@Override
public int compareTo(T o) {
if(this.count!=o.count)
return o.count - this.count;降序,后面的减前面的降序,前面的减后面的升序
return this.name.compareTo(o.name);前面的减后面的升序
}
}

 

第二种

public static TreeSet<T> sortStudent(){

TreeSet<T> ts = new TreeSet<T>(new Comparator<T>() {

@Override

public int compare(T o1, T o2) {
if(o1.getCount()!=o2.getCount())
return o2.getCount()-o1.getCount();后面的减前面的降序
return o2.getName().compareTo(o1.getName());后面的减前面的降序,前面的见后面的升序
}
});

转载于:https://www.cnblogs.com/shaoshanhuo/p/5160081.html

你可能感兴趣的文章
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
snmpwalk命令常用方法总结
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>