awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 repositorio

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • jamesroutley/write-a-hash-tableAvatar de jamesroutley

    jamesroutley/write-a-hash-table

    4,345Ver en 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
    Ver en GitHub↗4,345
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Systems Programming Projects