awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesOpen-source alternativesSelf-hosted softwareBlogPlan du site
ProjetÀ proposHow we rankPresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 dépôt

Awesome GitHub RepositoriesSystems Programming Projects

Tutorials for building core operating system and low-level components.

Explore 1 awesome GitHub repository matching part of an awesome list · Systems Programming Projects. Refine with filters or upvote what's useful.

Awesome Systems Programming Projects GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • jamesroutley/write-a-hash-tableAvatar de jamesroutley

    jamesroutley/write-a-hash-table

    4,345Voir sur GitHub↗

    This project is a pedagogical implementation of a hash table in C, built from scratch using open addressing and linear probing for collision resolution. It serves as a computer science algorithm demo, demonstrating how to construct a fundamental key-value store at a low level. The implementation covers the core operations of an associative array: inserting a key-value pair, looking up a value by its key, and deleting a pair. It uses a hash function to compute storage locations, maps hash values to array indices with the modulo operator, and resolves collisions by scanning sequentially through

    A tutorial on implementing a hash table from scratch.

    cdata-structureshash-tables
    Voir sur GitHub↗4,345
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Systems Programming Projects