The java.util.LinkedList.addFirst() method in Java is used to insert a specific element at the beginning of a LinkedList.
Syntax:
void addFirst(Object element)
Parameters: This function accepts a single parameter element as shown in the above syntax. The element specified by this parameter is appended at beginning of the list.
Return Value: This method does not returns any value.
Below program illustrate the java.util.LinkedList.addFirst() method:
import java.io.*;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String args[])
{
LinkedList<String> list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "The list is:" + list);
list.addFirst( "First" );
list.addFirst( "At" );
System.out.println( "The new List is:" + list);
}
}
|
Output:
The list is:[Geeks, for, Geeks, 10, 20]
The new List is:[At, First, Geeks, for, Geeks, 10, 20]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
10 Dec, 2018
Like Article
Save Article