【java】对ArrayList中的元素进行排序的几种方式

对ArrayList中的元素进行排序的几种方式

一、使用Collections工具类

1、对基本类型排序

通过Collections.sort()对基本类型排序默认是以升序排序

// 1.Collections.sort()默认按照升序排序
List<Integer> integerList = new ArrayList<>();
Collections.addAll(integerList,1,2,6,5,5,4,55,4,5,5,4,5,2,4,6,2,45);
Collections.sort(integerList);
System.out.println(integerList);

2、对字符串类型排序

对字符串类型排序默认按照首字母a-z排序

// 2.对字符串类型排序
List<String> strings = new ArrayList<>();
Collections.addAll(strings,"d","gsf","trh","fsd","an");
Collections.sort(strings);
System.out.println(strings);

3、对对象排序

如何使用Collections对对象排序呢?

在这里插入图片描述

其实只需要让我们的数据类型实现Comparable接口即可,下面定义一个实现Comparable接口的学生类,并且实现compareTo方法,让学生类只比较年龄。

/*** 学生** @author ez4sterben* @date 2023/07/18*/
public class Student implements Comparable<Student> {private String id;private String name;private Integer age;private String sex;@Overridepublic String toString() {return "Student{" +"age=" + age +'}';}public Student(Integer age) {this.age = age;}public String getId() {return id;}public void setId(String id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public Integer getAge() {return age;}public void setAge(Integer age) {this.age = age;}public String getSex() {return sex;}public void setSex(String sex) {this.sex = sex;}@Overridepublic int compareTo(Student o) {// 这种是升序return this.getAge() - o.getAge();// 这种是降序// return o.getAge() - this.getAge();}
}

排序方法和正常使用一样,直接把整个list传入即可

// 3.对对象排序List<Student> students = new ArrayList<>();Collections.addAll(students,new Student(18),new Student(26),new Student(20),new Student(16),new Student(12));System.out.println(students);Collections.sort(students);System.out.println(students);

在这里插入图片描述

二、使用stream流

// 2.lambda表达式Stream<Integer> sorted = integerList.stream().sorted();System.out.println(Arrays.toString(sorted.toArray()));

在这里插入图片描述

三、使用排序算法(以冒泡排序为例)

// 3.直接使用排序算法(以冒泡排序为例)for(int i = 0; i < integerList.size() - 1; i++){for(int j = 0; j < integerList.size() - i - 1; j++){if(integerList.get(j) > integerList.get(j + 1)){Integer temp = integerList.get(j);integerList.set(j, integerList.get(j + 1));integerList.set(j + 1, temp);}}}System.out.println(integerList);

在这里插入图片描述

四、测试类整体代码

import java.util.*;
import java.util.stream.Stream;/*** 数组列表排序** @author ez4sterben* @date 2023/07/19*/
public class ArrayListSort {public static void main(String[] args) {List<Integer> integerList = new ArrayList<>();Collections.addAll(integerList,1,2,6,5,5,4,55,4,5,5,4,5,2,4,6,2,45);// 1.Collections.sort()默认按照升序排序Collections.sort(integerList);System.out.println(integerList);// 2.对字符串类型排序List<String> strings = new ArrayList<>();Collections.addAll(strings,"d","gsf","trh","fsd","an");Collections.sort(strings);System.out.println(strings);// 3.对对象排序List<Student> students = new ArrayList<>();Collections.addAll(students,new Student(18),new Student(26),new Student(20),new Student(16),new Student(12));System.out.println(students);Collections.sort(students);System.out.println(students);// 2.lambda表达式Stream<Integer> sorted = integerList.stream().sorted();System.out.println(Arrays.toString(sorted.toArray()));// 3.直接使用排序算法(以冒泡排序为例)for(int i = 0; i < integerList.size() - 1; i++){for(int j = 0; j < integerList.size() - i - 1; j++){if(integerList.get(j) > integerList.get(j + 1)){Integer temp = integerList.get(j);integerList.set(j, integerList.get(j + 1));integerList.set(j + 1, temp);}}}System.out.println(integerList);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/29851.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

N天爆肝数据库——MySQL(5)

本文主要对索引进行了讲解 这里写目录标题 本文主要对索引进行了讲解索引概述介绍优缺点索引结构二叉树红黑树B-Tree(多路平衡查找树)BTreeBTree与B-Tree区别: HashHash索引特点 为什么InnoDB存储引擎选择使用BTree索引结构&#xff1f;索引分类在InnoDB存储引擎中&#xff0c;…

KUKA机械臂的导纳控制

KUKA机械臂的导纳控制 在近期的实验中&#xff0c;需要根据传感器的给出的实时位置信息进行导纳控制&#xff0c;并实时改变导纳控制的参数。由于KUKA自带的实时导纳控制模型无法实时修改参数&#xff0c;因此尝试了自己实现导纳控制。网上这方面的资料比较少&#xff0c;整理…

Notepad++ 配置python虚拟环境(Anaconda)

Notepad配置python运行环境步骤&#xff1a; 打开Notepad ->”运行”菜单->”运行”按钮在弹出的窗口内输入以下命令&#xff1a; 我的conda中存在虚拟环境 (1) base (2) pytorch_gpu 添加base环境至Notepad中 cmd /k chdir /d $(CURRENT_DIRECTORY) & call cond…

Redis相关配置(3)

⭐ 作者简介&#xff1a;码上言 ⭐ 代表教程&#xff1a;Spring Boot vue-element 开发个人博客项目实战教程 ⭐专栏内容&#xff1a;个人博客系统 ⭐我的文档网站&#xff1a;http://xyhwh-nav.cn/ 文章目录 Redis相关配置1、units2、Include3、loadmodule 加载模块4、NET…

[ 华为云 ] 云计算中Region、VPC、AZ 是什么,他们又是什么关系,应该如何抉择

前几天看到一个问答帖&#xff0c;我回答完了才发现这个帖子居然是去年的也没人回复&#xff0c;其中他问了一些华为云的问题&#xff0c;对于其中的一些概念&#xff0c;这里来总结讲解一下&#xff0c;希望对学习华为云的小伙伴有所帮助。 文章目录 区域&#xff08;Region&a…

three.js学习

前言&#xff1a; three.js基本使用没问下&#xff0c;下面进入自定义图形 效果展示 实现 使用BufferGeometry()自定义 <script setup lang"ts"> import { ref, onMounted } from vue import * as THREE from three // 导入轨道控制器 import { OrbitContro…

概率论的学习和整理--番外12:一个经典dubo模型的概率计算等

目录 1 经典模型知识科普 1.1 知识来源 1.2 下面是摘取的部分规则 2 这个经典dubo的概率和期望 2.1 网上计算的概率&#xff0c;期望全是负&#xff0c;赌徒悲剧 2.2 为什么会这样呢 3 假设把下注庄家不抽水&#xff0c;获得100%收益而不是95&#xff0c;多少次后可以赢…

leetcode 965.单值二叉树

⭐️ 题目描述 &#x1f31f; leetcode链接&#xff1a;单值二叉树 思路&#xff1a; 让当前的根节点与左孩子节点与右孩子节点判断&#xff0c;若相等则继续向下分治&#xff0c;让左孩子与右孩子当作新的根节点继续判断&#xff0c;直到某个节点不相等。 1️⃣ 代码&#x…

数组与指针

博客内容&#xff1a;数组与指针 文章目录 一、 数组&#xff1f;指针&#xff1f;1.区别与联系大小赋值存储位置 二、指针数组、数组指针&#xff1f;二维数组和二级指针&数组名与数组的区别总结 一、 数组&#xff1f;指针&#xff1f; 数组 相同类型数据的集合 指针 指…

TortoiseGit 入门指南11:还原与重置

Git 就像个时光机器&#xff0c;能让我们还原到任何提交。 还原未提交的更改 假如我们在查看一个干净的代码仓库&#xff0c;干净意味着工作区中的文件保持着最后一次提交的状态&#xff0c;没有修改。在查看的过程中&#xff0c;我们有意或无意的修改了工作区中的文件&#…

pwm呼吸灯

文章目录 一、呼吸灯二、代码实现三、引脚分配 一、呼吸灯 呼吸灯是指灯光在微电脑的控制之下完成由亮到暗的逐渐变化&#xff0c;使用开发板上的四个led灯实现1s间隔的呼吸灯。 二、代码实现 c module pwm_led( input clk ,input rst_n ,output reg [3:0] led ); …

TCP/IP网络编程 第十二章:I/O复用

基于I/O复用的服务器端 多进程服务器端的缺点和解决方法 为了构建并发服务器&#xff0c;只要有客户端连接请求就会创建新进程。这的确是实际操作中采用的种方案&#xff0c;但并非十全十美&#xff0c;因为创建进程时需要付出极大代价。这需要大量的运算和内存空间&#xff…