java对一个int数组进行排序、去重
思路:
1、使用 HashSet 进行去重
2、将 HashSet 变为 TreeSet
3、使用 TreeSet 进行排序
4、将 Set 变为 Integer 数组
5、将 Integer 数组变为 int 数组
/**
* @Author: DaleyZou
* @Description:对 candidates 数组进行排序、去重
* @Date: Created in 10:43 2018-8-23
* @Modified By:
*/
public class sortArray {
public static void main(String[] args){
/**
思路:
1、使用 HashSet 进行去重
2、将 HashSet 变为 TreeSet
3、使用 TreeSet 进行排序
4、将 Set 变为 Integer 数组
5、将 Integer 数组变为 int 数组
*/
int[] candidates = {1,1,2,2,2,9,8,7,76,84,54,45};
// 初始化一个需要排序、去重的int数组
HashSet hashSet = new HashSet();
// 去重
for (int i = 0;
i < candidates.length;
i++){
hashSet.add(candidates[i]);
}
Set set = new TreeSet(hashSet);
// 利用TreeSet排序
Integer[] integers = set.toArray(new Integer[]{});
int[] result = new int[integers.length];
// 我们排序、去重后的结果数组
for (int i = 0;
i < integers.length;
i++){
result[i] = integers[i].intValue();
}Arrays.stream(result).forEach(System.out::println);
// 将结果数组输出
}
}
【java对一个int数组进行排序、去重】转载于:https://www.cnblogs.com/daleyzou/p/9522533.html
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- 一个人的旅行,三亚
- 布丽吉特,人生绝对的赢家
- 一个小故事,我的思考。
- 一个人的碎碎念
- 进必趋|进必趋 退必迟,问起对 视勿移
- 对称加密和非对称加密的区别
- 七年之痒之后
- 我从来不做坏事
- 异地恋中,逐渐适应一个人到底意味着什么()