awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • jamesroutley/write-a-hash-tablejamesroutley 的头像

    jamesroutley/write-a-hash-table

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