9 dépôts
Data structures that maintain ordered pairs of values to efficiently manage state in graph traversal algorithms.
Distinct from Optimized Data Structures: Distinct from Optimized Data Structures: focuses specifically on priority-based state management for graph algorithms.
Explore 9 awesome GitHub repositories matching data & databases · Priority Queues. Refine with filters or upvote what's useful.
This project is a curated educational resource and solution repository for algorithmic challenges, specifically focused on LeetCode problems. It serves as a technical reference for common data structures and algorithmic patterns, providing verified code implementations across multiple programming languages alongside detailed logic and complexity analysis. The repository functions as a comprehensive study guide for competitive programming and technical interview preparation. It includes specialized learning tools such as an Anki flashcard dataset for spaced repetition and a browser extension t
Implements priority queues using heap structures for efficient retrieval of minimum or maximum elements.
Antigravity-Manager is an artificial intelligence model orchestration platform that functions as a unified gateway for interacting with multiple external service providers. It standardizes heterogeneous vendor data structures into a consistent internal schema, allowing third-party tools to interface with various models through a single, normalized API. The system distinguishes itself through automated infrastructure management, including the lifecycle tracking of service accounts and the secure rotation of authentication credentials. By acting as a middleware layer, it intercepts traffic to p
Routes tasks to optimal backend services based on real-time performance metrics and priority logic.
This project is a comprehensive, community-maintained knowledge base and toolkit designed for competitive programming. It serves as a centralized repository for algorithmic theory, data structures, and mathematical techniques, providing a structured reference for informatics and collegiate programming competitions. The project distinguishes itself by integrating educational content with a robust suite of automation utilities. It provides a complete workflow for competitive programming, including tools for automated test case generation, solution verification, and direct interaction with onlin
Data Structures maintain ordered pairs of values to efficiently manage state in graph traversal algorithms like Dijkstra.
go-datastructures is a collection of thread-safe and lock-free data structures designed for high-performance concurrent applications in Go. It provides a modular library of specialized algorithmic toolsets, including a lock-free collection library and an immutable data structure library. The project distinguishes itself through a suite of persistent AVL trees and hash array mapped tries that use branch-copying to preserve previous versions. It also implements non-blocking hash maps, queues, and tries that enable linearizable snapshots and concurrent updates without the use of mutual exclusion
Provides priority queues with floating-point keys and efficient decrease-key operations for graph algorithms.
algs4 is a Java data structures library and algorithm reference collection designed as the source code for a standard computer science textbook curriculum. It provides a comprehensive suite of fundamental implementations for sorting, searching, and core data organization. The project serves as a graph theory framework, offering tools for representing directed and undirected graphs and performing complex traversals and pathfinding. It also includes a broad sorting algorithm suite and a specialized library of Java data structures, including stacks, queues, priority queues, and symbol tables. I
Provides an indexed priority queue to efficiently retrieve and update elements associated with integer indices.
This is a collection of classical algorithms and data structures implemented as a header-only C++ library. It provides a suite of tools for general algorithm implementation, including data structure management, graph theory analysis, and string processing. The library is distinguished by its specialized toolkits for cryptographic hashing and encoding, featuring implementations of MD5, SHA-1, and Base64. It also includes advanced capabilities for high-performance string processing via suffix trees and arrays, as well as computational number theory for primality testing and arbitrary-precision
Implements priority queues using binary heaps to efficiently extract minimum or maximum items.
Ce projet est un framework de calcul scientifique pour l'écosystème .NET, fournissant une suite complète de bibliothèques pour l'analyse numérique, les statistiques et l'optimisation mathématique. Il sert de boîte à outils fondamentale pour développer des applications en machine learning, traitement numérique du signal et vision par ordinateur. Le framework fournit des outils spécialisés pour l'entraînement et le déploiement de modèles prédictifs, incluant les réseaux de neurones, les machines à vecteurs de support (SVM) et les arbres de décision. Il se distingue par des intégrations poussées pour l'analyse visuelle en temps réel, comme le suivi d'objets et la détection de traits faciaux, ainsi qu'une bibliothèque dédiée au traitement numérique du signal pour capturer et filtrer les signaux audio et de capteurs. La surface de capacités s'étend à la décomposition de matrices de haut niveau et à l'algèbre linéaire, à la modélisation d'états probabilistes et aux algorithmes de recherche heuristique. Il couvre également un large éventail d'utilitaires de manipulation de données, de la réduction de dimensionnalité et la normalisation à l'organisation de données spatiales et aux composants de visualisation scientifique. Le système inclut des contrôleurs d'intégration matérielle pour la configuration de caméras, la gestion des ports GPIO et le matériel de détection de profondeur spécialisé.
Implements a priority queue to manage elements based on assigned priority for efficient state management.
Cette bibliothèque fournit une collection de structures de données spécialisées pour le langage Swift qui étendent la bibliothèque standard avec des types de conteneurs avancés. Elle inclut des implémentations pour les files d'attente à double extrémité utilisant des tampons circulaires, des files d'attente de priorité basées sur des tas min-max, et un stockage efficace en mémoire de bit-set et bit-array pour les valeurs booléennes. Le projet propose des collections ordonnées qui maintiennent les éléments dans un ordre trié via des implémentations d'arbres B, ainsi que des ensembles et dictionnaires persistants qui utilisent des arbres préfixes compressés pour partager des données entre des copies mutées. Elle fournit également des conteneurs spécialisés qui préservent l'ordre d'insertion. La bibliothèque couvre une gamme de capacités, y compris la gestion mémoire de bas niveau pour les tampons C et les valeurs non copiables, le stockage à capacité fixe, et l'utilisation du hachage robin hood pour optimiser l'utilisation de la mémoire et les vitesses de recherche.
Implements priority queues using a min-max heap backed by an array for efficient priority-based retrieval.
This repository serves as a comprehensive library for algorithmic problem solving, providing reference implementations for fundamental computer science challenges. It is designed as a resource for technical interview preparation and competitive programming training, focusing on the mastery of common patterns and data structures required for coding assessments. The project distinguishes itself by offering solutions that emphasize idiomatic Python usage and performance optimization. It covers a wide range of algorithmic techniques, including greedy selection, dynamic programming, graph theory,
Utilizes heap-based priority queues to optimize shortest path selection in graph algorithms.