About 980 results
Open links in new tab
  1. Hashing in Java - GeeksforGeeks

    Jul 11, 2025 · In hashing there is a hash function that maps keys to some values. But these hashing function may lead to collision that is two or more keys are mapped to same value. Chain hashing …

  2. Guide to hashCode () in Java - Baeldung

    Dec 8, 2025 · Copy Java provides a number of data structures for dealing with this issue specifically. For example, several Map interface implementations are hash tables. When using a hash table, these …

  3. Hashing Algorithms in Java: A Comprehensive Guide

    Mar 24, 2026 · The output of a hashing function is called a hash value or hash code. In Java, hashing is widely used in data structures like `HashMap`, `HashSet`, and `Hashtable` to provide fast access to …

  4. Hashtable (Java Platform SE 8 ) - Oracle

    This class implements a hash table, which maps keys to values. Any non- null object can be used as a key or as a value. To successfully store and retrieve objects from a hashtable, the objects used as …

  5. Hashing and its Use Cases in Java - Scaler Topics

    Jul 14, 2024 · This article takes you through the basic understanding of hashing in java and the number of use cases built in java, including HashTable, HashMap, LinkedHashMap, ConcurretHashMap, …

  6. 6 ways to implement Hashing in Java [Practical Examples]

    Feb 22, 2022 · Different methods to implement Hashing in Java Hashing is a technique that maps values to the key using some hash function. This helps in making searching and accessing faster. …

  7. Hash Function in Data Structure: Types and Functions [With Examples]

    Explore Hashing in Data Structures: hash functions, tables, types, collisions, and methods (division, mid square, folding, multiplication) with practical examples and applications.

  8. SHA-256 in Java | Hashing and Validation Across Programming …

    Dec 23, 2025 · Learn how to implement SHA-256 in Java with step-by-step examples and best practices for secure hashing in your applications.

  9. Hashing Function in Java | Applications of Hash Function - EDUCBA

    Hashing function in Java was created as a solution to define & return the value of an object in the form of an integer, and this return value obtained as an output from the hashing function is called as a …

  10. Implementing Hash Functions (MD5, SHA-256) in Java

    Learn how to implement MD5 and SHA-256 hash functions in Java. This tutorial covers basics, advanced techniques, and real-world examples.