list 集合map元素排序
发布网友
发布时间:2024-10-19 17:55
我来回答
共1个回答
热心网友
时间:2024-11-16 19:25
List 可以用集合的排序,实现一个Comparator即可以
java.util.Collections
static <T> void sort(List<T> list,
Comparator<? super T> c) Sorts the specified list according to the order induced by the
specified comparator.
map用冒泡法就可以排序了,只不过将值从map中取出来比较而已。
JAVA 基础算法中的排序方法,同样适合上面的对象集合的,虽然取数据、设置数据,略有不同。