In this article you will learn difference between LinkedList and LinkedHashSet in java.
Prerequisite: LinkedList : LinkedHashSet
LinkedList class implements the List and Deque interface and extends from AbstractSequentialList class. LinkedList class uses doubly linked list to store the elements. It provides a linked-list data structure.
Java LinkedHashSet class is a Hash table and Linked list implementation of the set interface. It inherits HashSet class and implements Set interface. LinkedHashSet implementations of Set interface, there are some differences exist between them.
Lets See Difference Between LinkedList and LinkedHashSet in Java
- Inheritance:
- How work internally
Java LinkedList class uses doubly linked list to store the elements while LinkedHashSet uses LinkedHashMap internally to store it’s elements.
- uniqueness:
LinkedList class can contain duplicate elements while LinkedHashSet contains unique elements only like HashSet.
- Insertion:
LinkedList in case of doubly linked list, we can add or remove elements from both side while LinkedHashSet insert at the end.
- Constructor:
LinkedList have two constructor LinkedList() and LinkedList(Collection o) while LinkedHashSet have four constructor HashSet(), HashSet(Collection c), LinkedHashSet(int capacity) and LinkedHashSet(int capacity, float fillRatio)
- Insertion, Removal And Retrieval Operations:
LinkedList Insertion, Removal And Retrieval Operations performance of order O(n) while LinkedHashSet also gives performance of order O(1) for insertion, removal and retrieval operations.
- compare the elements:
LinkedList use equals() method LinkedHashSet also uses equals() and hashCode() methods to compare the elements.
- Null Elements:
LinkedList allow any number of null values while LinkedHashSet also allows maximum one null element.
- Syntax:
LinkedList syntax is:
public class LinkedList extends AbstractSequentialList implements List, Deque, Cloneable, Serializable
LinkedHashSet syntax is:
public class LinkedHashSet extends HashSet implements Set, Cloneable, Serializable
Example of LinkedList:
import java.util.*;
public class Test {
public static void main(String args[])
{
LinkedList<String> object = new LinkedList<String>();
object.add( "A" );
object.add( "B" );
object.addLast( "C" );
object.addFirst( "D" );
object.add( 2 , "E" );
object.add( null );
object.add( null );
System.out.println( "Linked list : " + object);
System.out.println( "Size of List:" + object.size());
}
}
|
Output:
Linked list : [D, A, E, B, C, null, null]
Size of List:7
Example of LinkedHashSet:
import java.util.LinkedHashSet;
public class Demo {
public static void main(String[] args)
{
LinkedHashSet<String> linkedset = new LinkedHashSet<String>();
linkedset.add( "A" );
linkedset.add( "B" );
linkedset.add( "C" );
linkedset.add( "D" );
System.out.println( "Original LinkedHashSet:" + linkedset);
System.out.println( "Size of LinkedHashSet = " + linkedset.size());
linkedset.add( "A" );
System.out.println( "After adding duplicate element " + linkedset);
System.out.println( "Size of LinkedHashSet = " + linkedset.size());
linkedset.add( null );
linkedset.add( null );
System.out.println( "After adding two null element " + linkedset);
System.out.println( "Size of LinkedHashSet = " + linkedset.size());
}
}
|
Output:
Original LinkedHashSet:[A, B, C, D]
Size of LinkedHashSet = 4
After adding duplicate element [A, B, C, D]
Size of LinkedHashSet = 4
After adding two null element [A, B, C, D, null]
Size of LinkedHashSet = 5
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
11 Dec, 2018
Like Article
Save Article