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
·

3 repositorios

Awesome GitHub RepositoriesMemory Deallocation Management

Mechanisms for reclaiming system memory through manual or periodic garbage collection of unused objects.

Distinct from Manual Memory Management: The candidates focus on pointer-level C-style deallocation or cognitive memory; this is about database engine object reclamation.

Explore 3 awesome GitHub repositories matching data & databases · Memory Deallocation Management. Refine with filters or upvote what's useful.

Awesome Memory Deallocation Management GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • mandliya/algorithms_and_data_structuresAvatar de mandliya

    mandliya/algorithms_and_data_structures

    6,145Ver en GitHub↗

    Este proyecto es una colección integral de librerías y toolkits de C++ que proporcionan implementaciones de referencia para estructuras de datos, algoritmos de grafos y lógica de bits. Sirve como una referencia de algoritmos en C++ que contiene más de 180 problemas de programación resueltos y un toolkit especializado para programación competitiva. El repositorio se distingue por sus extensas librerías de manipulación de bits de bajo nivel para comprobaciones de paridad, detección de endianness y lógica basada en XOR. También proporciona una amplia gama de soluciones de referencia para desafíos algorítmicos complejos que involucran backtracking, teoría de grafos y programación dinámica. La superficie de capacidades cubre organizadores de datos lineales y jerárquicos fundamentales, incluyendo listas enlazadas, pilas, colas y árboles de búsqueda binaria. Incluye un conjunto completo de algoritmos de grafos para búsqueda de caminos y árboles de expansión, varios métodos de ordenamiento y búsqueda, transformaciones de matrices y utilidades de procesamiento de cadenas. Además, cubre funciones computacionales matemáticas, compresión de datos sin pérdida y cifrados criptográficos básicos.

    Provides routines to deallocate every node in a linked list sequence to prevent memory leaks.

    C++algorithmbit-manipulationc
    Ver en GitHub↗6,145
  • hpjansson/chafaAvatar de hpjansson

    hpjansson/chafa

    4,264Ver en GitHub↗

    Chafa is a terminal graphics library that converts images and animated GIFs into character art for display in terminal emulators. It supports multiple output formats including ANSI escape sequences, Sixel graphics, and Unicode block characters, making it a versatile tool for rendering images directly within the terminal environment. The library is built as a shared C library with official bindings for Python and JavaScript, allowing developers to integrate terminal image rendering capabilities into applications across different programming environments. Chafa handles the full pipeline from im

    Releases memory allocated for an array of string objects, safely handling null pointers.

    Cansicligraphics
    Ver en GitHub↗4,264
  • memgraph/memgraphAvatar de memgraph

    memgraph/memgraph

    4,163Ver en GitHub↗

    Memgraph is an in-memory, distributed graph database designed for high-performance labeled property graph management. It utilizes a Cypher query engine for declarative data retrieval and manipulation, providing a scalable knowledge graph backend that integrates vector search and graph traversals. The system distinguishes itself as a real-time graph analytics platform, employing native C++ and CUDA implementations to execute complex network analysis and dynamic community detection on streaming data. It provides specialized support for AI integration, including GraphRAG capabilities, the constr

    Triggers garbage collection of unused objects manually or via periodic cycles to reclaim system memory.

    C++cyphergraphgraph-algorithms
    Ver en GitHub↗4,163
  1. Home
  2. Data & Databases
  3. Memory Deallocation Management

Explorar subetiquetas

  • Linked List Memory ReclamationManual deallocation strategies for cleaning up all nodes in a linked sequence. **Distinct from Memory Deallocation Management:** Distinct from general Memory Deallocation: focuses specifically on the sequential traversal required to free linked nodes.
  • String Array DeallocationsReleases memory allocated for arrays of string objects, safely handling null pointers. **Distinct from Memory Deallocation Management:** Distinct from Memory Deallocation Management: specifically handles deallocation of string arrays with null-pointer safety, not general memory reclamation.