search
HomeJavajavaTutorialLinkedList in Java
LinkedList in JavaAug 30, 2024 pm 03:48 PM
java

LinkedList in Java is linear data structures that are different from arrays. There are certain advantages as well as disadvantages of using Linked List in a Java program. Each element in a linkedlist is stored in a cell known as Node. Each node has a specific address. The main disadvantage of LinkedList is that the nodes are not easily accessible at each point.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

There are pointers that are used to address each node, and to access a specific node, there has to start from the head, and then the specific pointer to which the node is to be accessed is reached. The LinkedList class also consists of many constructors and methods like other Java interfaces. In this article, we are going to see two constructors which are being used in LinkedList.

They are:

  • LinkedList(): This is used for assigning an empty LinkedList().
  • LinkedList(Collection C): This is used to create an ordered list containing all elements of a specified collection, as returned by the collection’s iterator.

Methods of LinkedList in Java

There are many methods or functions which are part of the Java LinkedList class. We will see some of the functions that are part of the Java LinkedList class in this article.

They are:

  • add(int a, I Element): This method is used for inserting a specific element at the specific position in this list.
  • add( E e): This method fixes the specified element to the end of the list.
  • add(int index, Collection C): This method inserts all the specified elements in the list, starting from the starting position.
  • offerFirst​(): This method Inserts the specified element at the front of this list.
  • addLast(): This method is used for inserting an element at the end of the list.
  • void clear(): This method is used for removing all the elements from the Linkedlist.
  • poll​(): It removes the first element of a list.
  • lastIndexOf​(): Used for returning the index of the last occurrence of the specified element in this list.
  • getLast(): This function is used for returning the last element in the LinkedList.
  • offer​(): This method inserts the specified element as the tail element of the list.
  • offerLast​(): This method Inserts the specified element at the end of this list.
  • peek​(): It retrieves the first element of a list.
  • peekFirst​(): This method is used for retrieving the last element of a list or return null if the list is empty.
  • addFirst(): This method is used for inserting the element at the beginning of the list.
  • peekLast​(): This method is used for retrieving the last element of the list or return null if the list is empty.
  • pollFirst​(): This method is used for retrieving and removing the first element of this list or returns null if this list is empty.
  • contains(): This function returns true if the LinkedList contains the specific element at the node.
  • pollLast​(): This method removes the last element of this list or returns null if this list is empty.
  • removeFirst​(): This method returns the first element from this list.
  • element(): This method retrieves but does not remove the head of the list.
  • getFirst(): This method is used for returning the first element of the LinkedList.
  • remove​(): This method removes the first element of the LinkedList.
  • remove​(int index): This method removes the element at the specified position in this list.
  • removeLast​(): This method returns the last element from this list.
  • set​(int index, E element): This method replaces the element at the specified position in this list with the specified element.
  • size​(): This method returns the number of elements in this list.

Examples of LinkedList in Java

Given below are the examples mentioned:

Example #1

In this coding example, we are going to see the LinkedList methods of inserting certain elements in the linkedlist and then removing them, and finally displaying the linkedlist.

Code:

import java.util.*;
public class Example3
{
public static void main(String args[])
{
LinkedList<string> object = new LinkedList<string>();
// Adding elements to the linked list
object.add("A");
object.add("B");
object.addLast("C");
object.addFirst("D");
object.add(2, "E");
object.add("F");
object.add("G");
System.out.println("Linked list : " + object);
object.remove("C");
object.remove(3);
object.removeFirst();
object.removeLast();
System.out.println("Linked list after deletion: " + object);
}
}</string></string>

Output:

LinkedList in Java

In the sample output, we see that there are certain elements in the linkedlist, and finally, certain elements are deleted, and then the linkedlist after all the deletion of the elements is shown.

Example #2

In this program, we are going to see four names being printed using sequential order in LinkedList. We use a String LinkedList and use it to print names that can be of any number. We use the While loop here for printing the names which are present in the program.

Code:

import java.util.*;
public class LinkedList1
{
public static void main(String args[])
{
LinkedList<string> al=new LinkedList<string>();
al.add("Ishankamal Mitra");
al.add("Sourya Mukherjee");
al.add("Satyaki Das");
al.add("Debodooty Sarkar");
Iterator<string> itr=al.iterator();
while(itr.hasNext())
{
System.out.println(itr.next());
}
}
}</string></string></string>

Output:

LinkedList in Java

In this program, we check how the coding helps us to print four names in sequential order as mentioned in the LinkedList. In the next program, we are going to see how the sequence is changed; that is, the names are printed in reverse order of the input.

Example #3

In this code, the program inputs the name and then prints the names in the reverse order of their sequence.

Code:

import java.util.*;
public class LinkedList4
{
public static void main(String args[])
{
LinkedList<string> ll=new LinkedList<string>();
ll.add("Ishankamal Mitra");
ll.add("Sourya Mukherjee");
ll.add("Satyaki Das");
//Going through the list of elements in Reverse order
Iterator i=ll.descendingIterator();
while(i.hasNext())
{
System.out.println(i.next());
}
}
}</string></string>

Output:

LinkedList in Java

In this program, we use the DescendingIterator(), and we use it to print the names in the reverse order of the input. We can see it very clearly through the program.

Conclusion

In this article, we saw the different constructors and methods which are present in the LinkedList class. Plus, we saw a Java program to illustrate the insertion and deletion of elements in a LinkedList. We also saw the advantages and disadvantages of using LinkedList over arrays. They contain nodes that are not easily accessible and have to be accessed through the LinkedList head. We also notice three examples of coding where names are printed in reverse order, sequential order, and removing elements from a LinkedList. These programs help us to understand the methodology of the LinkedList class.

The above is the detailed content of LinkedList in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.