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

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

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

2 个仓库

Awesome GitHub RepositoriesStack-Allocated Arrays

Fixed-size array collections allocated on the stack for deterministic memory management.

Distinct from Array Column Operations: Distinct from Array Column Operations: focuses on stack-allocated fixed-size arrays in a systems programming context, not tabular data manipulation.

Explore 2 awesome GitHub repositories matching data & databases · Stack-Allocated Arrays. Refine with filters or upvote what's useful.

Awesome Stack-Allocated Arrays GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • miloyip/json-tutorialmiloyip 的头像

    miloyip/json-tutorial

    7,939在 GitHub 上查看↗

    This is an educational tutorial that walks through implementing a complete JSON library from scratch in C. The project covers the full data lifecycle of JSON, including parsing text into structured in-memory representations, validating input against the specification, serializing data back into standard JSON output, and providing structured access to elements within parsed arrays and objects. The implementation is built around a hand-written recursive descent parser that processes JSON text by matching grammar rules to build a structured data tree. Parsed values are stored in a tagged union r

    Constructs nested arrays and objects by pushing and popping elements on a dynamic stack during parsing.

    C
    在 GitHub 上查看↗7,939
  • carp-lang/carpcarp-lang 的头像

    carp-lang/Carp

    5,815在 GitHub 上查看↗

    Carp is a statically typed Lisp compiler that compiles Lisp-like syntax directly to C source code, enabling seamless integration with existing C libraries and low-level system programming. It manages memory deterministically at compile time using ownership tracking and linear types, eliminating garbage collection pauses and runtime overhead while ensuring type safety through an inferred static type system. The language distinguishes itself through compile-time macro expansion and metaprogramming capabilities, allowing code generation and transformation before final binary output. It enforces

    Stores fixed-size collections of elements allocated on the stack.

    Haskellfunctionalfunctional-programminggame-development
    在 GitHub 上查看↗5,815
  1. Home
  2. Data & Databases
  3. Array Column Operations
  4. Stack-Allocated Arrays

探索子标签

  • Dynamic Stack-Based Array BuildersConstructs nested arrays and objects by pushing and popping elements on a dynamic stack during parsing. **Distinct from Stack-Allocated Arrays:** Distinct from Stack-Allocated Arrays: uses a dynamic stack to build nested structures during parsing, not fixed-size stack allocation.