Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Java
10.0K+ articles
Misc
8.5K+ articles
Java-Functions
4.2K+ articles
Java - util package
1.6K+ articles
Java-Collections
1.1K+ articles
Linked Lists
302+ articles
Java-ArrayList
154+ articles
java-list
95+ articles
Java-List-Programs
57+ articles
java-LinkedList
62 posts
Recent Articles
Popular Articles
How to Remove Duplicate Elements From Java LinkedList?
Last Updated: 14 May 2021
Linked List is a part of the Collection in java.util package. LinkedList class is an implementation of the LinkedList data structure it is a linear data structure. In Link...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
java-LinkedList
How to Swap Two Elements in a LinkedList in Java?
Last Updated: 15 February 2022
Given a Linked List, the task is to swap two elements without disturbing their links. There are multiple ways to swap. Elements can be swapped using by swapping the elemen...
read more
Java
Java Programs
Picked
java-LinkedList
How to Get Sublist of LinkedList in Java?
Last Updated: 28 December 2020
Linked List is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data str...
read more
Java
Technical Scripter
Java Programs
Picked
java-LinkedList
Convert HashMap to LinkedList in Java
Last Updated: 21 February 2022
HashMap is similar to the HashTable, but it is unsynchronized. It allows to store the null keys as well, but there should be only one null key object and there can be any ...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-HashMap
java-LinkedList
How to Shuffle Elements in LinkedList in Java?
Last Updated: 04 January 2021
LinkedList is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data stru...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
java-LinkedList
Convert Array to LinkedList in Java
Last Updated: 31 March 2022
Array is contiguous memory allocation while LinkedList is a block of elements randomly placed in the memory which are linked together where a block is holding the address ...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
Java-Arrays
java-LinkedList
How to Iterate LinkedList in Java?
Last Updated: 07 January 2021
LinkedList in java is basically a part of the collection framework present in java.util package. It is the implementation of the LinkedList data structure that stores elem...
read more
Java
Java Programs
Picked
Java-Collections
java-LinkedList
Java Program to Implement Hash Tables Chaining with Doubly Linked Lists
Last Updated: 19 January 2021
Hash Tables(similar to tables in general) provide a subset of the dynamic set operations. Usually, a set of keys are mapped with some values based on certain relations. Ho...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
java-LinkedList
Java-HashTable
Convert LinkedList to String in Java
Last Updated: 28 March 2022
A LinkedList is a linear data structure, in which the elements are not stored at contiguous memory locations.For converting a linked list to a string we need to traverse t...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
Java-Strings
java-LinkedList
Remove First and Last Elements from LinkedList in Java
Last Updated: 06 April 2023
The Java.util.LinkedList.removeFirst() method is used to remove the first element from the LinkedList.The Java.util.LinkedList.removeLast() method is used to remove the la...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
java-LinkedList
Iterate a LinkedList in Reverse Order in Java
Last Updated: 28 January 2021
For traversing a linked list in reverse order we can use Descending Iterator or List Iterator1. Descending IteratorSyntax:LinkedListString linkedlist = new LinkedList();It...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
java-LinkedList
Java Program to Implement Unrolled Linked List
Last Updated: 11 April 2023
An Unrolled Linked List is a special type of Linked List in which each node stores an array of elements, unlike a simple linked list. Here we use an ArrayList and a constr...
read more
Java
Java Programs
Picked
java-LinkedList
Java Program to Reverse a Linked List Without Manipulating its Pointers
Last Updated: 22 September 2023
Given a linked list, the task is to write a program in Java that reverses the linked list without manipulating its pointers, i.e., the reversal should happen just by chang...
read more
Java
Technical Scripter
Java Programs
Technical Scripter 2020
java-LinkedList
Java Program to Implement LinkedList API
Last Updated: 26 July 2022
Linked List is a part of the Collection framework That is present in java.util package. This class is an implementation of the LinkedList data structure which is a linear ...
read more
Java
Java Programs
Picked
Java-Collections
java-LinkedList
How to Remove Elements from a LinkedHashMap in Java?
Last Updated: 25 January 2024
A LinkedHashMap is a part of the Collection Framework from java.util package Java and is similar to a HashMap, except that a LinkedHashMap preserves the insertion order am...
read more
Java
Java Programs
Picked
Java-Collections
java-LinkedList
Java Examples
1
2
3
4
5
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !