<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: HashMap Java Implementation</title><link>http://www.bing.com:80/search?q=HashMap+Java+Implementation</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>HashMap Java Implementation</title><link>http://www.bing.com:80/search?q=HashMap+Java+Implementation</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>HashMap in Java - GeeksforGeeks</title><link>https://www.geeksforgeeks.org/java/java-util-hashmap-in-java-with-examples/</link><description>A HashMap is a part of Java’s Collection Framework and implements the Map interface. It stores elements in key-value pairs, where, Keys are unique. and Values can be duplicated. Internally uses Hashing, hence allows efficient key-based retrieval, insertion, and removal with an average of O (1) time. HashMap is not thread-safe, to make it synchronized, use Collections.synchronizedMap ...</description><pubDate>Thu, 20 Aug 2026 05:44:00 GMT</pubDate></item><item><title>HashMap (Java Platform SE 8 ) - Oracle</title><link>https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html</link><description>An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number of buckets in the hash table, and the initial capacity is simply the capacity at the time the hash table is created.</description><pubDate>Mon, 17 Aug 2026 00:04:00 GMT</pubDate></item><item><title>Java HashMap - W3Schools</title><link>https://www.w3schools.com/java/java_hashmap.asp</link><description>Java HashMap A HashMap stores items in key/value pairs, where each key maps to a specific value. It is part of the java.util package and implements the Map interface. Instead of accessing elements by an index (like with ArrayList), you use a key to retrieve its associated value. A HashMap can store many different combinations, such as: String keys and Integer values String keys and String values</description><pubDate>Wed, 19 Aug 2026 14:14:00 GMT</pubDate></item><item><title>HashMap and TreeMap in Java - GeeksforGeeks</title><link>https://www.geeksforgeeks.org/java/hashmap-treemap-java/</link><description>HashMap and TreeMap are part of collection framework. HashMap java.util.HashMap class is a Hashing based implementation. In HashMap, we have a key and a value pair&lt;Key, Value&gt;. HashMap&lt;K, V&gt; hmap = new HashMap&lt;K, V&gt;(); Let us consider below example where we have to count occurrences of each integer in given array of integers. Input: arr[] = {10, 3, 5, 10, 3, 5, 10}; Output: Frequency of 10 is ...</description><pubDate>Wed, 19 Aug 2026 23:53:00 GMT</pubDate></item><item><title>Hash table - Wikipedia</title><link>https://en.wikipedia.org/wiki/Hash_table</link><description>A small phone book as a hash table In computer science, a hash table is a data structure that implements an associative array, also called a dictionary or simply map; an associative array is an abstract data type that maps keys to values. [3] A hash table uses a hash function to compute an index, also called a hash code, into an array of buckets or slots, from which the desired value can be ...</description><pubDate>Thu, 20 Aug 2026 21:08:00 GMT</pubDate></item><item><title>HashMap (Java SE 21 &amp; JDK 21) - Oracle</title><link>https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/HashMap.html</link><description>An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number of buckets in the hash table, and the initial capacity is simply the capacity at the time the hash table is created.</description><pubDate>Wed, 19 Aug 2026 08:30:00 GMT</pubDate></item><item><title>Java HashMap (With Examples) - Programiz</title><link>https://www.programiz.com/java-programming/hashmap</link><description>The HashMap class provides the functionality of the hash table data structure in Java. In this tutorial, we will learn about the Java HashMap class and its various operations with the help of examples.</description><pubDate>Tue, 14 Jul 2026 20:47:00 GMT</pubDate></item><item><title>HashMap Internal Working Explained with Examples</title><link>https://dev.to/naveenkumar1/hashmap-internal-working-explained-with-examples-1i6g</link><description>HashMap remains one of Java's most important data structures. HashMap may appear simple from the outside, but internally it combines hashing algorithms, bucket indexing, collision management, linked lists, Red Black Trees, and dynamic resizing mechanisms to deliver exceptional performance.</description><pubDate>Tue, 04 Aug 2026 20:58:00 GMT</pubDate></item><item><title>A Guide to Java HashMap - Baeldung</title><link>https://www.baeldung.com/java-hashmap</link><description>5. How to Avoid Casting HashMap&lt;String, Object&gt; Value The java.util.HashMap&lt;K,V&gt; class is a hash table based implementation of the Map interface. Let’s discuss how we can avoid casting an instance of type HashMap&lt;String, Object&gt;.</description><pubDate>Wed, 19 Aug 2026 22:13:00 GMT</pubDate></item><item><title>What is a hash map in programming and where can it be used</title><link>https://stackoverflow.com/questions/2592043/what-is-a-hash-map-in-programming-and-where-can-it-be-used</link><description>Hashmap is used for storing data in key value pairs. We can use a hashmap for storing objects in a application and use it further in the same application for storing, updating, deleting values. Hashmap key and values are stored in a bucket to a specific entry, this entry location is determined using Hashcode function.</description><pubDate>Thu, 20 Aug 2026 12:54:00 GMT</pubDate></item></channel></rss>