LinkedList pop/push element

In this chapter you will learn:

  1. Poll, pop and push element to a LinkedList

Poll, pop and push element to a LinkedList

We can use LinkedList as a stack. A stack is a computer data structure that element can only come in and out from one end of a list. First in last out, or Last in first out.

  • E pop()
    Pops an element from the stack represented.
  • void push(E e)
    Pushes an element onto the stack represented.
import java.util.LinkedList;
/*from j  a  v  a  2  s. co m*/
public class Main{
    public static void main(String args[]) {
        LinkedList<String> ll = new LinkedList<String>();

        ll.push("A");
        ll.push("java2s.com");
        ll.push("B");
        ll.push("C");
        ll.push("java2s.com");

        System.out.println(ll);
        System.out.println(ll.pop());
        System.out.println(ll);
    }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. Convert LinkedList to Array
Home » Java Tutorial » List

List

    List interface
    List add/insert elements
    List clear/remove elements
    List search
    List element get and set
    List and its Iterator
    List size, empty
    List conversion, to array
    List to sublist
    List comparison
    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search

ArrayList

    ArrayList
    ArrayList Creation
    ArrayList add/insert
    ArrayList get/set element
    ArrayList clear/remove
    ArrayList search
    ArrayList copy and shallow copy
    ArrayList size, trim to size and capacity
    ArrayList to array

LinkedList

    LinkedList class
    LinkedList creation
    LinkedList add/insert elements
    LinkedList get elements
    LinkedList search
    LinkeList replace/set elements
    LinkedList remove element
    LinkedList copy
    LinkedList iterator
    LinkedList peek element
    LinkedList pop/push element
    LinkedList conversion

List Utilities

    List filling
    List reversing
    List rotating and shuffling
    List sorting
    List element swap
    List element replacing
    List copy
    List binary search