4 Repos
High-performance hash sets specifically optimized for integer keys.
Distinguishing note: The candidates are for table existence or email verification; this is a low-level algorithmic integer set
Explore 4 awesome GitHub repositories matching data & databases · Integer Hash Sets. Refine with filters or upvote what's useful.
go-datastructures is a collection of thread-safe and lock-free data structures designed for high-performance concurrent applications in Go. It provides a modular library of specialized algorithmic toolsets, including a lock-free collection library and an immutable data structure library. The project distinguishes itself through a suite of persistent AVL trees and hash array mapped tries that use branch-copying to preserve previous versions. It also implements non-blocking hash maps, queues, and tries that enable linearizable snapshots and concurrent updates without the use of mutual exclusion
Implements a fast hashing algorithm with linear probing to check for the presence of integers.
LogicStack-LeetCode is a curated repository of solved algorithm problems and data structure implementations, primarily drawn from the LeetCode platform. Its core identity is a structured collection of solutions designed to support technical interview preparation and competitive programming practice, with each solution accompanied by complexity analyses to help engineers understand performance trade-offs. The repository distinguishes itself through its breadth of coverage across fundamental algorithmic patterns and data structures. It includes implementations for array manipulation, string pro
Implements a hash set that supports add, remove, and contains operations with constant average time complexity.
Dieses Projekt ist ein Vorbereitungsleitfaden und eine Referenzbibliothek für algorithmische Vorstellungsgespräche. Es bietet eine kuratierte Sammlung gelöster Programmieraufgaben und Datenstruktur-Implementierungen, die für die Praxis in technischen Interviews und für das wettbewerbsorientierte Programmieren konzipiert sind. Das Repository zeichnet sich dadurch aus, dass es Coding-Challenges durch ein System von Mustern, Schwierigkeitsgraden und unternehmensbasierten Filtern organisiert. Es enthält instruktive Ressourcen wie Notizen zu algorithmischen Konzepten und Videoerklärungen, um die Lösungssätze zu ergänzen. Die Bibliothek deckt ein breites Spektrum an Rechenbereichen ab, einschließlich fortgeschrittener Datenstrukturen für Bereichs- und Präfixabfragen, Graph-Traversierung und Kürzeste-Wege-Algorithmen sowie verschiedene Aufgabensätze mit Fokus auf dynamische Programmierung, Backtracking und Greedy-Strategien. Sie bietet zudem Implementierungen für grundlegende Strukturen wie Heaps, Hash-Maps, Linked Lists, Stacks und Queues.
Provides a collection of coding challenges and solutions centered on implementing and applying hash set logic.
Kvrocks is a disk-based NoSQL database and distributed key-value store that leverages the RocksDB storage engine to persist large datasets to physical disk. It is designed to be a Redis-compatible database, utilizing the standard Redis communication protocol to ensure interoperability with existing client libraries and tools. The project distinguishes itself by combining a disk-persistent storage model with advanced retrieval capabilities, including vector search for k-nearest neighbor queries, full-text search indexing, and geospatial query execution. It supports distributed clustering with
Stores and retrieves ranges of integers in a sorted collection for numerical range queries.