About 4,510,000 results
Open links in new tab
  1. Hash table - Wikipedia

    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 …

  2. Hash Table Data Structure - GeeksforGeeks

    Jul 23, 2025 · 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 …

  3. What is a Hash Table? How Computers Find Things Fast

    Hash tables are data structures that store key-value pairs and allow fast lookups using a hash function. Instead of searching through all data, the hash table computes an index from the key …

  4. How Hash Tables Work: Step-by-Step Explanation

    A hash table is a fundamental data structure used in computer programming to store information as key-value pairs. Think of it like a special kind of dictionary where each word (key) has a …

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

    Jan 13, 2025 · 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 …

  6. What is Hash Tables in Data Structures with Example

    Oct 12, 2025 · A Hash Table (also known as a Hash Map) is one of the most efficient and widely used data structures in computer science. It enables you to store and retrieve data quickly …

  7. Understanding Hash Tables: A Beginner’s Guide - Medium

    Jul 9, 2024 · What is a Hash Table? A hash table, also known as a hash map, is a data structure that maps keys to values.

  8. Understanding Hash Tables: The Backbone of Efficient Data Storage

    May 29, 2024 · A hash table is a data structure that maps keys to values. The average case of a hash table is constant time complexity, O (1), for both insertions and lookups.

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

    Hash tables are one of the most useful and versatile data structures in computer science. In this comprehensive guide, you‘ll gain an expert-level understanding of hash table internals, …

  10. Hash Tables | Guide to Data Structure Implementation

    What are Hash Tables? A hash table (also known as a hash map, dictionary, or associative array) is a fundamental data structure that provides O (1) average time complexity for insertions, …