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

목록에서 하위 목록을 제거하는 Java 프로그램

<시간/>

이 기사에서는 목록에서 하위 목록을 제거하는 방법을 이해합니다. 목록은 요소를 순차적으로 저장하고 액세스할 수 있도록 하는 정렬된 컬렉션입니다. 여기에는 요소를 삽입, 업데이트, 삭제 및 검색하는 인덱스 기반 메서드가 포함되어 있습니다. 또한 중복 요소가 있을 수 있습니다.

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

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

Input list: [Java, Programming, Is, Fun]

원하는 출력은 -

The list after removing a sublist is: [Java, Programming]

알고리즘

Step 1 - START
Step 2 - Declare an AbstractList namely input_list.
Step 3 - Add the values to the list.
Step 4 - Use subList().clear() to clear the sublist from the specified index values.
Step 5 - Display the result
Step 6 - Stop

예시 1

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

import java.util.*;
public class Demo {
   public static void main(String args[]){
      AbstractList<String> input_list = new LinkedList<String>();
      input_list.add("Java");
      input_list.add("Programming");
      input_list.add("Is");
      input_list.add("Fun");
      System.out.println("The list is defined as: " + input_list);
      input_list.subList(2, 4).clear();
      System.out.println("The list after removing a sublist is: " + input_list);
   }
}

출력

The list is defined as: [Java, Programming, Is, Fun]
The list after removing a sublist is: [Java, Programming]

예시 2

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

import java.util.*;
public class Demo {
   static void remove_sublist(AbstractList input_list){
      input_list.subList(2, 4).clear();
      System.out.println("The list after removing a sublist is: " + input_list);
   }
   public static void main(String args[]){
      AbstractList<String> input_list = new LinkedList<String>();
      input_list.add("Java");
      input_list.add("Programming");
      input_list.add("Is");
      input_list.add("Fun");
      System.out.println("The list is defined as: " + input_list);
      remove_sublist(input_list);
   }
}

출력

The list is defined as: [Java, Programming, Is, Fun]
The list after removing a sublist is: [Java, Programming]