Create LinkedList
LinkedList()
- Creates an empty list.
LinkedList(Collection<? extends E> c)
- Creates a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
import java.util.LinkedList;
public class Main{
public static void main(String args[]) {
LinkedList<String> ll = new LinkedList<String>();
ll.add("A");
ll.add("B");
ll.add("ja v a2s.com");
ll.add("E");
ll.add("F");
System.out.println(ll);
}
}
The output:
[A, B, ja v a2s.com, E, F]
Home
Java Book
Collection
Java Book
Collection
LinkedList:
- LinkedList class
- Create LinkedList
- Add element to LinkedList
- Remove all elements from LinkedList
- Shallow copy of a LinkedList
- If contain a certain element
- Get iterator from LinkedList
- Peek the element
- Get the element from LinkedList
- Get the index of an element
- Poll, pop and push element to a LinkedList
- Remove element from a LinkedList
- Replace the element at the position
- Get the size of a LinkedList
- Convert LinkedList to Array
- Storing User-Defined Classes in Collections