Internal Working of LinkedHashMap in Java

7 years ago

In the previous article, we have discussed internal working about the HashMap and here we will discuss the internal working…

Internal Working of HashMap in Java

7 years ago

In this article, we will discuss the Internal Working of HashMap in Java and how hashmap's get and put method…

Find and Break a Loop in a Linked list

7 years ago

In this article, we will discuss an algorithm on how to find and break loop in a linked list. So,…

How to Detect loop in a linked list

7 years ago

In this article, we will discuss an algorithm on how to detect a loop in a linked list. So, in…

Remove Duplicates from the Unsorted Singly Linked list

7 years ago

In this article, we will discuss another algorithm related to the singly linked list, how to remove duplicates from the…

Singly linked list is palindrome without extra space

7 years ago

In this article, we will discuss how to check a singly linked list is palindrome or not without using any…

Print nodes at k distance from the root

7 years ago

In this article, we will discuss how to print nodes at k distance from the root of a binary tree.…

Delete given node from singly linked list

7 years ago

In this article, we will discuss how to delete a given node from the singly linked list. Given a pointer…

Reverse linked list in Java How to

7 years ago

In this article, we will discuss how to reverse linked list in java. Iterative and Recursive there are two approaches,…

Find the middle element in a linked list

7 years ago

In this article, we will discuss how to find the middle element in a linked list. A linked list has…