Detailed explanation of five classic Java array deduplication algorithms
In Java programming, we often encounter situations where we need to perform deduplication operations on arrays, that is, remove arrays Duplicate elements in , retain unique elements. The following will introduce five classic Java array deduplication algorithms and provide corresponding code examples.
- Using HashSet
HashSet is a collection class in Java that automatically removes duplicate elements. This feature can be used to quickly achieve array deduplication.
Code example:
import java.util.Arrays; import java.util.HashSet; public class ArrayDeduplicateExample { public static void main(String[] args) { int[] array = {1, 2, 3, 2, 4, 3, 5}; HashSet<Integer> set = new HashSet<>(); for (int i : array) { set.add(i); } int[] result = new int[set.size()]; int index = 0; for (int i : set) { result[index++] = i; } System.out.println(Arrays.toString(result)); } }
- Using TreeSet
TreeSet is an ordered collection class in Java that automatically removes duplicates and sorts elements. Array deduplication can be achieved by adding elements in the array to a TreeSet and then converting the TreeSet into an array.
Code example:
import java.util.Arrays; import java.util.TreeSet; public class ArrayDeduplicateExample { public static void main(String[] args) { int[] array = {1, 2, 3, 2, 4, 3, 5}; TreeSet<Integer> set = new TreeSet<>(); for (int i : array) { set.add(i); } Integer[] result = set.toArray(new Integer[0]); int[] deduplicatedArray = Arrays.stream(result).mapToInt(Integer::intValue).toArray(); System.out.println(Arrays.toString(deduplicatedArray)); } }
- Using the Stream API
The Stream API introduced in Java 8 and above can simplify array deduplication operations. By converting the array to a stream, use the distinct method of the stream to remove duplicate elements, and then convert it to an array.
Code example:
import java.util.Arrays; public class ArrayDeduplicateExample { public static void main(String[] args) { int[] array = {1, 2, 3, 2, 4, 3, 5}; int[] deduplicatedArray = Arrays.stream(array).distinct().toArray(); System.out.println(Arrays.toString(deduplicatedArray)); } }
- Using double loop
Double loop is a common array deduplication algorithm. By comparing adjacent elements, duplicate elements are set to a specified illegal values, and then perform the illegal value removal operation.
Code example:
import java.util.Arrays; public class ArrayDeduplicateExample { public static void main(String[] args) { int[] array = {1, 2, 3, 2, 4, 3, 5}; for (int i = 0; i < array.length - 1; i++) { if (array[i] != Integer.MIN_VALUE) { for (int j = i + 1; j < array.length; j++) { if (array[i] == array[j]) { array[j] = Integer.MIN_VALUE; } } } } int count = 0; for (int i = 0; i < array.length; i++) { if (array[i] != Integer.MIN_VALUE) { array[count++] = array[i]; } } int[] deduplicatedArray = Arrays.copyOf(array, count); System.out.println(Arrays.toString(deduplicatedArray)); } }
- Using HashMap
HashMap is a hash table structure in Java. Array elements are inserted as keys by using the put method of HashMap. If the key If it already exists, duplicate elements will be automatically removed.
Code examples:
import java.util.Arrays; import java.util.HashMap; import java.util.Map; public class ArrayDeduplicateExample { public static void main(String[] args) { int[] array = {1, 2, 3, 2, 4, 3, 5}; Map<Integer, Object> map = new HashMap<>(); for (int i : array) { map.put(i, null); } int[] deduplicatedArray = new int[map.size()]; int index = 0; for (int i : map.keySet()) { deduplicatedArray[index++] = i; } System.out.println(Arrays.toString(deduplicatedArray)); } }
The above are detailed introductions and code examples of five classic Java array deduplication algorithms. In practical applications, choosing an appropriate deduplication algorithm according to specific circumstances can improve the performance and readability of the program.
The above is the detailed content of Detailed explanation of five classic Java array deduplication algorithms. For more information, please follow other related articles on the PHP Chinese website!

五种高效的Java数组去重方法大揭秘在Java开发过程中,经常会遇到需要对数组进行去重的情况。去重就是将数组中的重复元素去掉,只保留一个。本文将介绍五种高效的Java数组去重方法,并提供具体的代码示例。方法一:使用HashSet去重HashSet是一种无序不重复集合,在添加元素时会自动去重。因此,我们可以利用HashSet的特性来进行数组去重。public

Java数组添加元素的常用方法,需要具体代码示例在Java中,数组是一种常见的数据结构,可以存储多个相同类型的元素。在实际开发中,我们经常需要向数组中添加新的元素。本文将介绍Java中数组添加元素的常用方法,并提供具体的代码示例。使用循环创建新数组一个简单的方法是创建一个新的数组,将旧数组的元素复制到新数组中,并添加新的元素。代码示例如下://原始数组i

常用方法有length属性、复制数组、数组遍历、数组排序、数组转换为字符串等。详细介绍:1、length属性:用于获取数组的长度,它是一个属性而不是方法。示例:int[] arr = {1, 2, 3}; int length = arr.length;;2、复制数组:使用System.arraycopy()方法或Arrays类的copyOf()方法来复制数组的内容到新数组等等

五种经典的Java数组去重算法详解在Java编程中,经常会遇到需要对数组进行去重操作的情况,即去除数组中的重复元素,保留唯一的元素。下面将介绍五种经典的Java数组去重算法,并提供相应的代码示例。使用HashSetHashSet是Java中的一个集合类,它会自动去除重复元素,利用这一特性可以快速实现数组去重。代码示例:importjava.util.Arr

如何在Java中使用数组和集合进行数据存储和操作在Java编程中,数组和集合是常用的数据存储和操作方式。数组是一种用于存储相同类型的数据的容器,而集合则是由多个元素组成的对象。使用数组进行数据存储和操作的基本方法如下:声明数组变量要使用数组,首先需要声明一个数组变量。可以使用以下语法声明一个数组变量:dataType[]arrayName;其中,dataT

Java中数组添加元素的技巧和注意事项在Java中,数组是一种非常常见且重要的数据结构。它可以存储一组相同类型的元素,并且可以通过索引访问和修改这些元素。在实际应用中,我们经常需要向数组中动态地添加元素。本文将介绍一些Java中数组添加元素的技巧和注意事项,并提供相应的代码示例。使用动态数组(ArrayList)来添加元素动态数组ArrayList是

深入解析Java数组去重的五种实用方法在Java中,处理数组是非常常见的操作。而数组去重是在实际开发中经常遇到的问题。本文将深入解析Java数组去重的五种实用方法,并提供具体的代码示例。一、使用HashSet去重HashSet是Java中的一种集合,它具有自动去重的功能。我们可以利用HashSet的特性,将数组中的元素添加到HashSet中,实现去重的效果。

在Java编程中,处理数组下标越界是一个重要的问题。如果不正确地处理数组下标越界,程序可能会发生崩溃或者产生无法预料的错误。本文将介绍Java中数组下标越界的原因、如何避免下标越界,以及当发生下标越界时应该如何处理。数组下标越界的原因在Java中,如果访问的数组下标超出了数组的范围,就会发生数组下标越界异常(ArrayIndexOutOfBoundsExce


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
