LinkedList get elements

In this chapter you will learn:

  1. Get the element from LinkedList

Get the element from LinkedList

The following methods get elements from LinkedList in various positions.

  • E get(int index)
    Returns the element at the specified position in this list.
  • E getFirst()
    Returns the first element in this list.
  • E getLast()
    Returns the last element in this list.
import java.util.LinkedList;
//from   ja  va 2 s.co  m
public class Main{
    public static void main(String args[]) {
        LinkedList<String> ll = new LinkedList<String>();

        ll.add("A");
        ll.add("ja v a2s.com");
        ll.add("B");
        ll.add("C");


        System.out.println(ll.get(1));
        System.out.println(ll.getLast());
        System.out.println(ll.getFirst());
    }
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. What are the methods from LinkedList we can use to do a search
  2. How to use the return value from indexOf and lastIndexof
  3. If contain a certain element
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