About 7,410,000 results
Open links in new tab
  1. Hash Table Data Structure - GeeksforGeeks

    Mar 25, 2025 · What is Hash Table? A Hash table is defined as a data structure used to insert, look up, and remove key-value pairs quickly. It operates on the hashing concept, where each key is translated by a hash function into a distinct index in an array. The index functions as a storage location for the matching value.

  2. Hash table - Wikipedia

    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] .

  3. Hash Table Explained: What it Is and How to Implement It

    Jan 25, 2020 · A hash table, also known as a hash map, is a data structure that maps keys to values. It is one part of a technique called hashing, the other of which is a hash function. A hash function is an algorithm that produces an index of where a …

  4. Hash Table Data Structure - Programiz

    A Hash Table data structure stores elements in key-value pairs. In this tutorial, you will learn about the working of the hash table data structure along with its implementation in Python, Java, C, and C++.

  5. Hashing in Data Structure - GeeksforGeeks

    Apr 13, 2025 · Hashing is a technique used in data structures that efficiently stores and retrieves data in a way that allows for quick access. Hashing involves mapping data to a specific index in a hash table (an array of items) using a hash function. …

  6. Hash Table Data structure - Online Tutorials Library

    Hash Table is a data structure which stores data in an associative manner. In a hash table, data is stored in an array format, where each data value has its own unique index value. Access of data becomes very fast if we know the index of the desired data.

  7. The Hash Table Data Structure : A Complete Guide - Medium

    May 1, 2024 · Hashing involves the process of mapping inputs, known as keys, to outputs, also known as values, through the use of a hash function, which is based on a mathematical algorithm. The purpose of...

  8. Hash Tables - Data Structures Handbook

    A hash table is a data structure where data is stored in an associative manner. The data is mapped to array positions by a hash function that generates a unique value from each key.

  9. Hash Tables in Data Structure (With Implementation & Examples)

    Mar 8, 2025 · A hash table is a special data structure that helps store and find data quickly using a key. Think of it like a big table where each row has a unique label (key) and a piece of information (value).

  10. Understanding Hash Tables: A Beginner’s Guide - w3resource

    Jan 13, 2025 · What is a Hash Table? A hash table, also known as a hash map, is a data structure that stores key-value pairs. It uses a hash function to compute an index into an array, where the corresponding value is stored. Hash tables allow for efficient insertion, deletion, and lookup operations. For example:

  11. Some results have been removed