Open In App

LinkedList push() Method in Java

Improve
Improve
Like Article
Like
Save
Share
Report

The java.util.LinkedList.push() method is used to push an element at the starting(top) of the stack represented by LinkedList. This is similar to the addFirst() method of LinkedList and simply inserts the element at the first position or top of the linked list.

Syntax:

LinkedListObject.push(Object element)

Parameters: The method accepts one parameter element of object type and represents the element to be inserted. The type ‘Object’ should be of same Stack represented by the LinkedList.

Return Type: The return type of the method is void i.e. it doesn’t returns any value.

Below programs illustrate the java.util.LinkedList.push() method:

Program 1:




// Java code to demonstrate push() method
import java.util.LinkedList;
  
public class GfG {
    // Main method
    public static void main(String[] args)
    {
  
        // Creating a LinkedList object to represent a stack.
        LinkedList<String> stack = new LinkedList<>();
  
        // Pushing an element in the stack
        stack.push("I");
  
        // Pushing an element in the stack
        stack.push("Like");
  
        // Pushing an element in the stack
        stack.push("GeeksforGeeks");
  
        // Printing the complete stack.
        System.out.println(stack);
    }
}


Output:

[GeeksforGeeks, Like, I]

Program 2 :




// Java code to demonstrate push() method
  
import java.util.LinkedList;
  
public class GfG {
    // main method
    public static void main(String[] args)
    {
  
        // Creating a LinkedList object to represent a stack.
        LinkedList<Integer> stack = new LinkedList<>();
  
        // Pushing an element in the stack
        stack.push(30);
  
        // Pushing an element in the stack
        stack.push(20);
  
        // Pushing an element in the stack
        stack.push(10);
  
        // Printing the complete stack.
        System.out.println(stack);
    }
}


Output:

[10, 20, 30]


Last Updated : 10 Dec, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads