Solving “Two Sum” in C with a tiny hash table

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • robin-hood-hashing

    Discontinued Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20

  • std::unordered_map is notoriously slow, several times slower than a "proper" hashmap implementation like Google's absl or Martin's robin-hood-hashing [1]. That said, std::sort is not the fastest sort implementation, either. It is hard to say which will win.

    [1]: https://github.com/martinus/robin-hood-hashing

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Effortless Performance Improvements in C++: std:unordered_map

    4 projects | news.ycombinator.com | 2 Mar 2023
  • A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion

    5 projects | /r/cpp | 4 Jul 2022
  • Hashing of integer keys in hash maps

    1 project | /r/cpp | 7 Mar 2022
  • how to do memory pool de-fragmentation?

    1 project | /r/gamedev | 3 Aug 2021
  • Fast And Memory Efficient C++ Hashtable Based On Robin Hood Hashing

    1 project | /r/programming | 23 May 2021