0% found this document useful (0 votes)
85 views

LinkedList in Java - Javatpoint

The Java LinkedList class uses a doubly linked list to store elements and implements the List and Deque interfaces. It allows duplicates and maintains insertion order. Elements can be added, removed, or accessed from both ends efficiently without shifting elements. Common methods include add(), remove(), get(), size(), and iterator(). It extends AbstractSequentialList and is non-synchronized.

Uploaded by

manoj
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
85 views

LinkedList in Java - Javatpoint

The Java LinkedList class uses a doubly linked list to store elements and implements the List and Deque interfaces. It allows duplicates and maintains insertion order. Elements can be added, removed, or accessed from both ends efficiently without shifting elements. Common methods include add(), remove(), get(), size(), and iterator(). It extends AbstractSequentialList and is non-synchronized.

Uploaded by

manoj
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

5/17/2021 LinkedList in Java - javatpoint

Java LinkedList class


Java LinkedList class uses a doubly linked list to store the elements. It provides a
linked-list data structure. It inherits the AbstractList class and implements List and
Deque interfaces.

The important points about Java LinkedList are:

Java LinkedList class can contain duplicate elements.

Java LinkedList class maintains insertion order.

Java LinkedList class is non synchronized.

In Java LinkedList class, manipulation is fast because no shifting needs to


occur.

Java LinkedList class can be used as a list, stack or queue.

Hierarchy of LinkedList class

As shown in the above diagram, Java LinkedList class extends


AbstractSequentialList class and implements List and Deque interfaces.

Doubly Linked List

In the case of a doubly linked list, we can add or remove elements from both sides.

LinkedList class declaration

Let's see the declaration for java.util.LinkedList class.

https://www.javatpoint.com/java-linkedlist 1/11
5/17/2021 LinkedList in Java - javatpoint

public class LinkedList<E> extends AbstractSequentialList<E> implements List<E>, Deque<E>, Cloneable, Serializable

Constructors of Java LinkedList

Constructor Description

LinkedList() It is used to construct an empty list.

LinkedList(Collection<? It is used to construct a list containing the elements of the specified collection, in the order,
extends E> c) they are returned by the collection's iterator.

Methods of Java LinkedList

Method Description

boolean add(E e) It is used to append the specified element to the end of a list.

void add(int index, E element) It is used to insert the specified element at the specified position index in a list.

boolean addAll(Collection<? It is used to append all of the elements in the specified collection to the end of this list, in
extends E> c) the order that they are returned by the specified collection's iterator.

boolean addAll(Collection<? It is used to append all of the elements in the specified collection to the end of this list, in
extends E> c) the order that they are returned by the specified collection's iterator.

boolean addAll(int index, It is used to append all the elements in the specified collection, starting at the specified
Collection<? extends E> c) position of the list.

void addFirst(E e) It is used to insert the given element at the beginning of a list.

void addLast(E e) It is used to append the given element to the end of a list.

void clear() It is used to remove all the elements from a list.

Object clone() It is used to return a shallow copy of an ArrayList.

boolean contains(Object o) It is used to return true if a list contains a specified element.

Iterator<E> It is used to return an iterator over the elements in a deque in reverse sequential order.
descendingIterator()

E element() It is used to retrieve the first element of a list.

E get(int index) It is used to return the element at the specified position in a list.

E getFirst() It is used to return the first element in a list.

E getLast() It is used to return the last element in a list.

int indexOf(Object o) It is used to return the index in a list of the first occurrence of the specified element, or -1
if the list does not contain any element.

int lastIndexOf(Object o) It is used to return the index in a list of the last occurrence of the specified element, or -1 if
the list does not contain any element.

https://www.javatpoint.com/java-linkedlist 2/11
5/17/2021 LinkedList in Java - javatpoint

ListIterator<E> listIterator(int It is used to return a list-iterator of the elements in proper sequence, starting at the
index) specified position in the list.

boolean offer(E e) It adds the specified element as the last element of a list.

boolean offerFirst(E e) It inserts the specified element at the front of a list.

boolean offerLast(E e) It inserts the specified element at the end of a list.

E peek() It retrieves the first element of a list

E peekFirst() It retrieves the first element of a list or returns null if a list is empty.

E peekLast() It retrieves the last element of a list or returns null if a list is empty.

E poll() It retrieves and removes the first element of a list.

E pollFirst() It retrieves and removes the first element of a list, or returns null if a list is empty.

E pollLast() It retrieves and removes the last element of a list, or returns null if a list is empty.

E pop() It pops an element from the stack represented by a list.

void push(E e) It pushes an element onto the stack represented by a list.

E remove() It is used to retrieve and removes the first element of a list.

E remove(int index) It is used to remove the element at the specified position in a list.

boolean remove(Object o) It is used to remove the first occurrence of the specified element in a list.

E removeFirst() It removes and returns the first element from a list.

boolean It is used to remove the first occurrence of the specified element in a list (when traversing
removeFirstOccurrence(Object the list from head to tail).
o)

E removeLast() It removes and returns the last element from a list.

boolean It removes the last occurrence of the specified element in a list (when traversing the list
removeLastOccurrence(Object from head to tail).
o)

E set(int index, E element) It replaces the element at the specified position in a list with the specified element.

Object[] toArray() It is used to return an array containing all the elements in a list in proper sequence (from
first to the last element).

<T> T[] toArray(T[] a) It returns an array containing all the elements in the proper sequence (from first to the last
element); the runtime type of the returned array is that of the specified array.

int size() It is used to return the number of elements in a list.

https://www.javatpoint.com/java-linkedlist 3/11
5/17/2021 LinkedList in Java - javatpoint

Java LinkedList Example

import java.util.*;

public class LinkedList1{

public static void main(String args[]){

LinkedList<String> al=new LinkedList<String>();

al.add("Ravi");

al.add("Vijay");

al.add("Ravi");

al.add("Ajay");

Iterator<String> itr=al.iterator();

while(itr.hasNext()){

System.out.println(itr.next());

Output: Ravi
Vijay
Ravi
Ajay

Java LinkedList example to add elements

Here, we see different ways to add elements.

import java.util.*;

public class LinkedList2{

public static void main(String args[]){

LinkedList<String> ll=new LinkedList<String>();

System.out.println("Initial list of elements: "+ll);

ll.add("Ravi");

https://www.javatpoint.com/java-linkedlist 4/11
5/17/2021 LinkedList in Java - javatpoint

ll.add("Vijay");

ll.add("Ajay");

System.out.println("After invoking add(E e) method: "+ll);

//Adding an element at the specific position

ll.add(1, "Gaurav");

System.out.println("After invoking add(int index, E element) method: "+ll);

LinkedList<String> ll2=new LinkedList<String>();

ll2.add("Sonoo");

ll2.add("Hanumat");

//Adding second list elements to the first list

ll.addAll(ll2);

System.out.println("After invoking addAll(Collection<? extends E> c) method: "+ll);

LinkedList<String> ll3=new LinkedList<String>();

ll3.add("John");

ll3.add("Rahul");

//Adding second list elements to the first list at specific position

ll.addAll(1, ll3);

System.out.println("After invoking addAll(int index, Collection<? extends E> c) method: "+ll);

//Adding an element at the first position

ll.addFirst("Lokesh");

System.out.println("After invoking addFirst(E e) method: "+ll);

//Adding an element at the last position

ll.addLast("Harsh");

System.out.println("After invoking addLast(E e) method: "+ll);

Initial list of elements: []


After invoking add(E e) method: [Ravi, Vijay, Ajay]
After invoking add(int index, E element) method: [Ravi, Gaurav, Vijay, Ajay]
After invoking addAll(Collection<? extends E> c) method:
[Ravi, Gaurav, Vijay, Ajay, Sonoo, Hanumat]
After invoking addAll(int index, Collection<? extends E> c) method:
[Ravi, John, Rahul, Gaurav, Vijay, Ajay, Sonoo, Hanumat]
After invoking addFirst(E e) method:
[Lokesh, Ravi, John, Rahul, Gaurav, Vijay, Ajay, Sonoo, Hanumat]
After invoking addLast(E e) method:
[Lokesh, Ravi, John, Rahul, Gaurav, Vijay, Ajay, Sonoo, Hanumat, Harsh]

Java LinkedList example to remove elements

Here, we see different ways to remove an element.

import java.util.*;

public class LinkedList3 {


https://www.javatpoint.com/java-linkedlist 5/11
5/17/2021 LinkedList in Java - javatpoint

public static void main(String [] args)

LinkedList<String> ll=new LinkedList<String>();

ll.add("Ravi");

ll.add("Vijay");

ll.add("Ajay");

ll.add("Anuj");

ll.add("Gaurav");

ll.add("Harsh");

ll.add("Virat");

ll.add("Gaurav");

ll.add("Harsh");

ll.add("Amit");

System.out.println("Initial list of elements: "+ll);

//Removing specific element from arraylist

ll.remove("Vijay");

System.out.println("After invoking remove(object) method: "+ll);

//Removing element on the basis of specific position

ll.remove(0);

System.out.println("After invoking remove(index) method: "+ll);

LinkedList<String> ll2=new LinkedList<String>();

ll2.add("Ravi");

ll2.add("Hanumat");

// Adding new elements to arraylist

ll.addAll(ll2);

System.out.println("Updated list : "+ll);

//Removing all the new elements from arraylist

ll.removeAll(ll2);

System.out.println("After invoking removeAll() method: "+ll);

//Removing first element from the list

ll.removeFirst();

System.out.println("After invoking removeFirst() method: "+ll);

//Removing first element from the list

ll.removeLast();

System.out.println("After invoking removeLast() method: "+ll);

//Removing first occurrence of element from the list

ll.removeFirstOccurrence("Gaurav");

System.out.println("After invoking removeFirstOccurrence() method: "+ll);

//Removing last occurrence of element from the list

ll.removeLastOccurrence("Harsh");

System.out.println("After invoking removeLastOccurrence() method: "+ll);

//Removing all the elements available in the list

https://www.javatpoint.com/java-linkedlist 6/11
5/17/2021 LinkedList in Java - javatpoint

ll.clear();

System.out.println("After invoking clear() method: "+ll);

Initial list of elements: [Ravi, Vijay, Ajay, Anuj, Gaurav, Harsh, Virat, Gaurav, Harsh, Amit]
After invoking remove(object) method: [Ravi, Ajay, Anuj, Gaurav, Harsh, Virat, Gaurav, Harsh, Amit]
After invoking remove(index) method: [Ajay, Anuj, Gaurav, Harsh, Virat, Gaurav, Harsh, Amit]
Updated list : [Ajay, Anuj, Gaurav, Harsh, Virat, Gaurav, Harsh, Amit, Ravi, Hanumat]
After invoking removeAll() method: [Ajay, Anuj, Gaurav, Harsh, Virat, Gaurav, Harsh, Amit]
After invoking removeFirst() method: [Gaurav, Harsh, Virat, Gaurav, Harsh, Amit]
After invoking removeLast() method: [Gaurav, Harsh, Virat, Gaurav, Harsh]
After invoking removeFirstOccurrence() method: [Harsh, Virat, Gaurav, Harsh]
After invoking removeLastOccurrence() method: [Harsh, Virat, Gaurav]
After invoking clear() method: []

Java LinkedList Example to reverse a list of elements

import java.util.*;

public class LinkedList4{

public static void main(String args[]){

LinkedList<String> ll=new LinkedList<String>();

ll.add("Ravi");

ll.add("Vijay");

ll.add("Ajay");

//Traversing the list of elements in reverse order

Iterator i=ll.descendingIterator();

while(i.hasNext())

System.out.println(i.next());

Output: Ajay
Vijay
Ravi

Java LinkedList Example: Book

import java.util.*;

class Book {

https://www.javatpoint.com/java-linkedlist 7/11
5/17/2021 LinkedList in Java - javatpoint

int id;

String name,author,publisher;

int quantity;

public Book(int id, String name, String author, String publisher, int quantity) {

this.id = id;

this.name = name;

this.author = author;

this.publisher = publisher;

this.quantity = quantity;

public class LinkedListExample {

public static void main(String[] args) {

//Creating list of Books

List<Book> list=new LinkedList<Book>();

//Creating Books

Book b1=new Book(101,"Let us C","Yashwant Kanetkar","BPB",8);

Book b2=new Book(102,"Data Communications & Networking","Forouzan","Mc Graw Hill",4);

Book b3=new Book(103,"Operating System","Galvin","Wiley",6);

//Adding Books to list

list.add(b1);

list.add(b2);

list.add(b3);

//Traversing list

for(Book b:list){

System.out.println(b.id+" "+b.name+" "+b.author+" "+b.publisher+" "+b.quantity);

Output:

101 Let us C Yashwant Kanetkar BPB 8


102 Data Communications & Networking Forouzan Mc Graw Hill 4
103 Operating System Galvin Wiley 6

← Prev Next →

Youtube For Videos Join Our Youtube Channel: Join Now

Help Others, Please Share

https://www.javatpoint.com/java-linkedlist 8/11
5/17/2021 LinkedList in Java - javatpoint

Learn Latest Tutorials

SoapUI RPA tutorial manual testing cucumber


tutorial tutorial tutorial
RPA
SoapUI Manual T. Cucumber

Appium postgresql Apache Solr MongoDB


tutorial tutorial Tutorial tutorial

Appium PostgreSQL Solr MongoDB

Gimp Tutorial Verilog Teradata PhoneGap


Tutorial Tutorial Tutorial
Gimp
Verilog Teradata PhoneGap

Preparation

Aptitude Logical Verbal Ability Interview


Reasoning Questions
Aptitude Verbal A.
Reasoning Interview

Company
Interview
Questions

Company

Trending Technologies

Artificial AWS Tutorial Selenium Cloud tutorial


Intelligence tutorial
Tutorial AWS Cloud
Selenium
AI

https://www.javatpoint.com/java-linkedlist 9/11
5/17/2021 LinkedList in Java - javatpoint

Hadoop ReactJS Data Science Angular 7


tutorial Tutorial Tutorial Tutorial

Hadoop ReactJS D. Science Angular 7

Blockchain Git Tutorial Machine DevOps


Tutorial Learning Tutorial Tutorial
Git
Blockchain ML DevOps

B.Tech / MCA

DBMS tutorial Data DAA tutorial Operating


Structures System tutorial
DBMS tutorial DAA
OS
DS

Computer Compiler Computer Discrete


Network tutorial Design tutorial Organization and Mathematics
Architecture Tutorial
C. Network Compiler D.
COA D. Math.

Ethical Computer Software html tutorial


Hacking Tutorial Graphics Tutorial Engineering
Tutorial Web Tech.
E. Hacking C. Graphics
Software E.

Cyber Automata C Language C++ tutorial


Security tutorial Tutorial tutorial
C++
Cyber Sec. Automata C

Java tutorial .Net Python tutorial List of


Framework Programs
Java tutorial Python
Programs
.Net

Control Data Mining


Systems tutorial Tutorial

Control S. Data Mining

https://www.javatpoint.com/java-linkedlist 10/11
5/17/2021 LinkedList in Java - javatpoint

https://www.javatpoint.com/java-linkedlist 11/11

You might also like