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

LinkedList에 요소를 추가하는 Java 프로그램

<시간/>

이 기사에서는 연결 목록에 요소를 추가하는 방법을 이해할 것입니다. java.util.LinkedList 클래스 작업은 이중 연결 목록에서 기대할 수 있는 성능을 수행합니다. 목록에 대한 색인을 생성하는 작업은 처음부터 목록을 탐색하거나 끝, 지정된 인덱스에 더 가까운 쪽입니다.

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

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

Run the program

원하는 출력은 -

The elements added to the lists are: [Java, Python, Scala, Shell]

알고리즘

Step 1 - START
Step 2 - Declare a linkedlist namely input_list
Step 3 – Using the nuilt-in function add(), we add the elements to the list
Step 4 - Display the result
Step 5 - Stop

예시 1

여기에서 목록 끝에 요소를 추가합니다.

import java.util.LinkedList;
public class Demo {
   public static void main(String[] args){
      LinkedList<String> input_list = new LinkedList<>();
      System.out.println("A list is declared");
      input_list.add("Java");
      input_list.add("Python");
      input_list.add("Scala");
      input_list.add("Shell");
      System.out.println("The elements added to the lists are: " + input_list);
   }
}

출력

A list is declared
The elements added to the lists are: [Java, Python, Scala, Shell]

예시 2

여기에서 목록의 지정된 위치에 요소를 추가합니다.

import java.util.LinkedList;
public class Demo {
   public static void main(String[] args){
      LinkedList<String> input_list = new LinkedList<>();
      input_list.add("Java");
      input_list.add("Python");
      input_list.add("JavaScript");
      System.out.println("The list is defined as: " + input_list);
      input_list.add(1, "Scala");
      System.out.println("The list after adding element at position 1: " + input_list);
   }
}

출력

The list is defined as: [Java, Python, JavaScript]
The list after adding element at position 1: [Java, Scala, Python, JavaScript]