Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

ArrayList에서 중복 요소를 제거하는 Java 프로그램

<시간/>

이 기사에서는 arrayList에서 중복 요소를 제거하는 방법을 이해합니다. ArrayList 클래스는 java.util 패키지에서 찾을 수 있는 크기 조정 가능한 배열입니다. Java의 내장 배열과 ArrayList의 차이점은 배열의 크기를 수정할 수 없다는 것입니다.

아래는 동일한 데모입니다 -

입력이 다음과 같다고 가정 -

Input list : [150, 250, 300, 250, 500, 150, 600, 750, 300]

원하는 출력은 -

The list with no duplicates is:
[150, 250, 300, 500, 600, 750]

알고리즘

Step 1 - START
Step 2 - Declare namely
Step 3 - Define the values.
Step 4 – Create an ArrayList of integer values and initialize elements in it.
Step 5 - Display the ArrayList on the console.
Step 6 - Create another linkedhashset of integers.
Step 7 - Use the ‘addAll’ method to include elements from previous ArrayList into it as elements.
Step 8 - Since it is a set, it only adds the unique values.
Step 9 - Clear the elements of the ArrayList.
Step 10- Display the set on the console with unique elements.
Step 11- Stop

예시 1

여기에서 모든 작업을 'main' 기능 아래에 묶습니다.

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.Set;
public class Demo {
   public static void main(String[] args) {
      System.out.println("The required packages have been imported");
      ArrayList<Integer> input_list = new ArrayList<>(Arrays.asList(150, 250, 300, 250, 500, 150, 600, 750, 300));
      System.out.println("The list is defined as: " + input_list);
      Set<Integer> temp_set = new LinkedHashSet<>();
      temp_set.addAll(input_list);
      input_list.clear();
      input_list.addAll(temp_set);
      System.out.println("\nThe list with no duplicates is: \n" + input_list);
   }
}

출력

The required packages have been imported
The list is defined as: [150, 250, 300, 250, 500, 150, 600, 750, 300]

The list with no duplicates is:
[150, 250, 300, 500, 600, 750]

예시 2

여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.Set;
public class Demo {
   static void remove_duplicates(ArrayList<Integer> input_list){
      Set<Integer> temp_set = new LinkedHashSet<>();
      temp_set.addAll(input_list);
      input_list.clear();
      input_list.addAll(temp_set);
      System.out.println("\nThe list with no duplicates is: \n" + input_list);
   }
   public static void main(String[] args) {
      System.out.println("The required packages have been imported");
      ArrayList<Integer> input_list = new ArrayList<>(Arrays.asList(150, 250, 300, 250, 500, 150, 600, 750, 300));
      System.out.println("The list is defined as: " + input_list);
      remove_duplicates(input_list);
   }
}

출력

The required packages have been imported
The list is defined as: [150, 250, 300, 250, 500, 150, 600, 750, 300]

The list with no duplicates is:
[150, 250, 300, 500, 600, 750]