欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java实现的数组去重与排序操作详解

程序员文章站 2023-12-20 20:37:22
本文实例讲述了java实现的数组去重与排序操作。分享给大家供大家参考,具体如下: 这里演示java实现数组去重、排序操作 文中的示例源码编写基于jdk1.6+、juni...

本文实例讲述了java实现的数组去重与排序操作。分享给大家供大家参考,具体如下:

这里演示java实现数组去重、排序操作

文中的示例源码编写基于jdk1.6+、junit4.8.2

java.util.arrays.sort()

支持对int[],long[],short[],char[],byte[],float[],double[],object[]进行排序

参考示例代码片段如下

// 声明int 数组,并初始化
int[] intarry = {5,4,7,8,2,0,1,9,3,6,10};
// 对int数组进行排序
arrays.sort(intarry);

junit 测试类源码:

package com.gjnote.test.array;
import java.util.arrays;
import org.junit.test;
public class testarrayssort {
// 声明int 数组,并初始化
int[] intarry = {5,4,7,8,2,0,1,9,3,6,10};
@test
public void test() {
// 对int数组进行排序
arrays.sort(intarry);
for (int i = 0; i < intarry.length; i++) {
system.out.println(intarry[i]);
}
system.out.println(arrays.tostring(intarry));
}
}

控制台输出

0
1
2
3
4
5
6
7
8
9
10
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

java.util.collections.sort()

通过实现内部compare方法实现对象的比较

示例代码片段如下

/**
* 使用 collections.sort(list, comparator(){});
* 对list数组排序 推荐使用方法
*/
public void collectionssortelement1(list list) {
collections.sort(list, new comparator() {
@override
public int compare(string o1, string o2) {
// 根据实际排序需要调整compareto对象顺序
return (o2).compareto(o1);
}
});
}

java实现对list去重

方式一,使用for循环遍历去除list中的重复元素

代码片段如下

list templist = new arraylist();
// 去除原始list中的重复元素
for (string string : originallist) {
if (!templist.contains(string)) {
templist.add(string);
}
}

方式二,使用set去重

代码片段如下

// set 利用set元素唯一性,去重
set set = new hashset(originallist);
list templist = new arraylist(set);

方式三,使用 treeset去除重复元素

treeset treeset = new treeset(originallist);
listtemplist = new arraylist();
templist.addall(treeset);
// treeset 默认的排序为升序,根据实际情况添加是否需要反排序
collections.reverse(templist);

java实现对list去重后排序

junit 测试list去重及排序源码

package com.gjnote.test.array;
import java.util.arraylist;
import java.util.collections;
import java.util.comparator;
import java.util.hashset;
import java.util.list;
import java.util.set;
import java.util.treeset;
import org.junit.before;
import org.junit.test;
/**
* test class
*
list 数组去重 元素排序
*
* @version 1.0
* @author www.gjnote.com
*
*/
public class testlistarraysort {
private listoriginallist = null;
@before
public void setup() throws exception {
originallist = new arraylist();
for (int i = 10000; i > 0; i--) {
originallist.add("element" + i);
// add repeat element
if(i % 2 == 0) {
originallist.add("element" + i);
}
}
}
/**
* 输出list 元素
* @param list
*/
private void outputlist(list list) {
for (int i = 0; i < list.size(); i++) {
system.out.println(list.get(i));
}
}
/**
* 使用 collections.sort(list, comparator(){});
* 排序 推荐方法
*/
private void collectionssortelement(list list) {
long start = system.currenttimemillis();
collections.sort(list, new comparator() {
@override
public int compare(string o1, string o2) {
// 根据实际排序需要调整compareto对象顺序
return o2.compareto(o1);
}
});
//outputlist(templist);
system.out.println("collections.sort:"
+ (system.currenttimemillis() - start) + "ms");
}
/**
* 测试 使用for循环遍历去除重复元素
* collections.sort排序
*/
@test
public void testforloopremoverepeatelement() {
system.out.println("testforloopremoverepeatelement");
long start = system.currenttimemillis();
list templist = new arraylist();
// 去除重复元素
for (string string : originallist) {
if (!templist.contains(string)) {
templist.add(string);
}
}
// 排序
collectionssortelement(templist);
//outputlist(templist);
system.out.println("使用for循环遍历list,去除重复元素: "
+ (system.currenttimemillis() - start) + "ms");
}
/**
* 测试 使用set去重;
* 使用collections.sort(list, comparator(){});排序
*
*/
@test
public void testsetremoverepeatelement() {
system.out.println("testsetremoverepeatelement");
long start = system.currenttimemillis();
// 先排序 (理论值:先排序后去重会比后排序效率更高)
collectionssortelement(originallist);
// set 利用set元素唯一性,去重
set set = new hashset(originallist);
list templist = new arraylist(set);
// 后排序 可以注释先排序,开启后排序试试运行时间
//collectionssortelement(templist);
//outputlist(templist);
system.out.println("collections.sort排序,使用set去重:"
+ (system.currenttimemillis() - start) + "ms");
}
/**
* 测试 使用 treeset去除重复元素
* 默认排序或collections.reverse翻转排序
*/
@test
public void testtreesetremoverepeatelement() {
system.out.println("testtreesetremoverepeatelement");
long start = system.currenttimemillis();
treesettreeset = new treeset(originallist);
listtemplist = new arraylist();
templist.addall(treeset);
// treeset 默认的排序为升序,根据实际情况添加是否需要反排序
collections.reverse(templist);
//outputlist(templist);
system.out.println("使用 treeset排序,去除重复元素:"
+ (system.currenttimemillis() - start) + "ms");
}
@test
public void testmethods() {
//outputlist(originallist);
// list 去重 推荐方法
testsetremoverepeatelement();// 14ms
testtreesetremoverepeatelement();// 20ms
//testforloopremoverepeatelement();// 2525ms
}
}

运行testsetremoverepeatelement()控制台输出结果

testsetremoverepeatelement
collections.sort:8ms
collections.sort排序,使用set去重:14ms

运行testtreesetremoverepeatelement()控制台输出结果

testtreesetremoverepeatelement
使用 treeset排序,去除重复元素:20ms

运行testforloopremoverepeatelement()控制台输出结果

testforloopremoverepeatelement
collections.sort:7ms
使用for循环遍历list,去除重复元素: 2525ms

ps:这里再为大家提供几款相关工具供大家参考使用:

在线去除重复项工具:

在线文本去重复工具:

在线动画演示插入/选择/冒泡/归并/希尔/快速排序算法过程工具:

更多关于java算法相关内容感兴趣的读者可查看本站专题:《java数据结构与算法教程》、《java操作dom节点技巧总结》、《java文件与目录操作技巧汇总》和《java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。

上一篇:

下一篇: