이 기사에서는 배열 목록에서 반복되는 요소를 제거하는 방법을 이해할 것입니다. ArrayList 클래스는 AbstractList를 확장하고 List 인터페이스를 구현합니다. ArrayList는 필요에 따라 확장할 수 있는 동적 배열을 지원합니다.
배열 목록은 초기 크기로 생성됩니다. 이 크기를 초과하면 컬렉션이 자동으로 확대됩니다. 개체가 제거되면 배열이 축소될 수 있습니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
The list is defined as: [Java, Scala, JavaScript, Scala]
원하는 출력은 -
The list after removing the duplicates is: [Java, Scala, JavaScript]
알고리즘
Step 1 - START Step 2 - Declare an ArrayList namely input_list and declare a set namely temp. Step 3 - Define the values. Step 4 - Convert the list to a set Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 모든 작업을 'main' 기능 아래에 묶습니다.
import java.util.*; public class Demo { public static void main(String args[]) { ArrayList<String> input_list = new ArrayList<String>(); input_list.add("Java"); input_list.add("Scala"); input_list.add("JavaScript"); input_list.add("Scala"); System.out.println("The list is defined as: " + input_list); Set<String> temp = new LinkedHashSet<>(input_list); List<String> result_list = new ArrayList<>(temp); System.out.println("The list after removing the duplicates is: " + result_list); } }
출력
The list is defined as: [Java, Scala, JavaScript, Scala] The list after removing the duplicates is: [Java, Scala, JavaScript]
예시 2
여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.
import java.util.*; public class Demo { static void remove_duplicates(ArrayList<String> input_list){ Set<String> temp = new LinkedHashSet<>(input_list); List<String> result_list = new ArrayList<>(temp); System.out.println("The list after removing the duplicates is: " + result_list); } public static void main(String args[]) { ArrayList<String> input_list = new ArrayList<String>(); input_list.add("Java"); input_list.add("Scala"); input_list.add("JavaScript"); input_list.add("Scala"); System.out.println("The list is defined as: " + input_list); remove_duplicates(input_list); } }
출력
The list is defined as: [Java, Scala, JavaScript, Scala] The list after removing the duplicates is: [Java, Scala, JavaScript]