The get the first element we can use the LinkedList.getFirst()
method and to get the last element we can use the LinkedList.getLast()
method.
package org.kodejava.util;
import java.util.LinkedList;
public class LinkedListGetFirstLast {
public static void main(String[] args) {
LinkedList<String> names = new LinkedList<>();
names.add("Alice");
names.add("Bob");
names.add("Carol");
names.add("Mallory");
// Get the first and the last element of the linked list
String first = names.getFirst();
String last = names.getLast();
System.out.println("First member = " + first);
System.out.println("Last member = " + last);
}
}
The program will print the following result:
First member = Alice
Last member = Mallory
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023