Java程序添加元素到LinkedList


LinkedList是Java集合框架中的一个泛型类,它实现了三个接口:List、Deque和Queue。它提供了LinkedList数据结构的功能,LinkedList是一种线性数据结构,其中每个元素都彼此链接。我们可以对LinkedList执行多种操作,包括添加、删除和遍历元素。要向LinkedList集合添加元素,我们可以使用各种内置方法,例如add()、addFirst()和addLast()。我们将探讨如何使用这些方法向LinkedList添加元素。

在Java中向LinkedList添加元素

在Java中,LinkedList类提供了以下内置方法来添加元素:

  • add() − 用于在集合末尾插入元素。我们比其他方法更频繁地使用它。

  • addFirst() − 此方法用于在LinkedList的第一个索引处插入元素。

  • addLast() − 它在指定LinkedList的最后一个索引处插入元素。

  • addAll() − 当我们需要将一个集合的所有元素添加到另一个LinkedList时,我们使用addAll()方法。

在我们的Java程序中,在将元素插入LinkedList时,我们只需要将所需的元素作为参数传递即可。

在跳转到Java程序以向LinkedList添加元素之前,让我们讨论一下创建LinkedList类实例的语法。

语法

LinkedList<Type> nameOfinstance = new LinkedList<>();

这里,“类型”可以是任何包装类。

示例1

以下示例说明了如何使用add()方法将元素插入LinkedList。

import java.util.LinkedList;
public class Demo1 {
   public static void main(String[] args) {
      // creating a linkedlist 
      LinkedList<String> input_list = new LinkedList<>();
      // adding elements to the list
      input_list.add("Java");
      input_list.add("Python");
      input_list.add("Scala");
      input_list.add("Shell");
      // printing the result
      System.out.println("The elements added to the list are: " + input_list);
   }
}

输出

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

示例2

也可以使用add()方法在LinkedList的所需位置插入元素。它还可以接受索引号作为可选参数。

import java.util.LinkedList;
public class Demo2 {
   public static void main(String[] args) {
      // creating a linkedlist 
      LinkedList<String> input_list = new LinkedList<>();
      // adding initial elements to the list
      input_list.add("Java");
      input_list.add("Python");
      input_list.add("JavaScript");
      // printing the result
      System.out.println("The list is defined as: " + input_list);
      // adding a new element to the existing list at index 1
      input_list.add(1, "Scala");
      // printing the new result
      System.out.println("The list after adding element at position 1: ");
      int index = 0;
      for(String print : input_list) {
         System.out.println("Index: " + index + ", Element: " + print);
         index++;
      }
   }
}

输出

The list is defined as: [Java, Python, JavaScript]
The list after adding element at position 1: 
Index: 0, Element: Java
Index: 1, Element: Scala
Index: 2, Element: Python
Index: 3, Element: JavaScript

示例3

在以下示例中,我们将使用listIterator()方法向LinkedList添加元素。

import java.util.LinkedList;
import java.util.ListIterator;
public class Demo3 {
   public static void main(String[] args) {
      // creating a linkedlist 
      LinkedList<String> input_list = new LinkedList<>();
      // creating an instance of ListIterator
      ListIterator<String> newList = input_list.listIterator();
      // adding elements to the list
      newList.add("Java");
      newList.add("Python");
      newList.add("Scala");
      newList.add("Shell");
      // printing the result
      System.out.println("The elements added to the list are: " + input_list);
   }
}

输出

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

示例4

在此示例中,我们将使用addFirst()和addLast()方法在LinkedList的第一个和最后一个索引处插入元素。

import java.util.LinkedList;
public class Demo4 {
   public static void main(String[] args) {
      LinkedList<Integer> inputList = new LinkedList<>();
      // Adding elements in linkedlist
      inputList.add(8);
      inputList.add(4);
      inputList.add(1);
      inputList.add(0);
      System.out.println("Elements of the original Linkedlist : " + inputList);
      // adding elements to the first and last index
      inputList.addFirst(9);
      inputList.addLast(9);
      // to print the result
      System.out.println("After adding elements to the first and last index of Linkedlist : " + inputList);
   }
}

输出

Elements of the original Linkedlist : [8, 4, 1, 0]
After adding elements to the first and last index of Linkedlist : [9, 8, 4, 1, 0, 9]

结论

我们从介绍LinkedList开始本文,LinkedList是Java集合框架中的一个泛型类。在下一节中,我们看到了此类的各种内置方法,这些方法可用于将元素插入LinkedList集合。这些方法是:add()、addAll()、addFirst()和addLast()。

更新于: 2023年8月10日

290 次浏览

开启你的职业生涯

通过完成课程获得认证

开始学习
广告