Partha Choudhuryblog.partha51613.com·Apr 26, 2024Internal workings of a HashMap: How it works?A HashMap is a part of the Java's Collection and is used to store key-value pairs. Each key is mapped to a single value, and while duplicate keys are not allowed, duplicate values are permitted. We will learn about how a HashMap works internally, how...Discuss·41 readsJava Collections Framework
Abi Farhanabifarhan.hashnode.dev·May 14, 2023Demystifying Hash Tables: Boosting Data Efficiency with Smart Key-Value PairingIntroduction In today's data-driven world, efficient storage and retrieval of information is crucial for optimal performance. Hash tables provide an efficient solution for storing and retrieving key-value pairs. The blog post aims to demystify hash t...Discuss·30 readsdata structures