From 82545c49874e011a8006b5646dd460d9976ed51d Mon Sep 17 00:00:00 2001 From: O_M_K_A_R <97804236+CodeForHunger@users.noreply.github.com> Date: Sat, 17 Aug 2024 16:45:30 +0530 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index adaff14..8944fec 100644 --- a/README.md +++ b/README.md @@ -3053,7 +3053,9 @@ A HashMap in Java is a data structure that stores key-value pairs and uses a has It allows for fast lookups, insertions, and deletions of elements by key. It is implemented using an array and a linked list, where each element in the array is a linked list of key-value pairs that share the same hash code. -The HashMap is part of the Java Collections Framework and is not thread-safe by default, but it can be made thread-safe by using the java.util.Collections.synchronizedMap() method. +The HashMap is part of the Java Collections Framework and is not thread-safe by default, but it can be made thread-safe by using the java.util.Collections.synchronizedMap() method. + +Know more about => [HashMap Internal Working](https://boldcoder.blogspot.com/2024/08/internal-working-of-hashmap-in-java.html) ![image](https://user-images.githubusercontent.com/91504420/214188096-ca9c97b4-21d1-45f9-8370-5e1d4e200281.png)