4 个仓库
Last-in-first-out data structures supporting O(1) push and pop operations, typically backed by arrays or linked lists.
Distinguishing note: No candidate covers stack data structures; closest candidates are unrelated to fundamental data structures.
Explore 4 awesome GitHub repositories matching software engineering & architecture · Stack Implementations. Refine with filters or upvote what's useful.
pysheeet 是一个技术参考库,提供了一系列精选的代码片段和实现模式,用于高级 Python 开发、系统集成和高性能计算。它充当实现底层网络编程、原生 C 扩展以及异步和并发编程的综合指南。 该项目为大语言模型的开发和部署提供了专门的框架,包括用于分布式 GPU 推理和高性能服务的工具。它还包括用于高性能计算集群编排的详细模式,涵盖 GPU 资源分配和多节点工作负载管理。 该库涵盖了广泛的功能,包括安全网络通信和加密、对象关系映射和数据库管理,以及复杂数据结构和算法的实现。它还提供用于内存管理、通过外部函数接口(FFI)进行原生互操作以及系统级 OS 集成的实用程序。
Implements last-in-first-out stack behavior using standard list append and pop methods.
Algodeck is an open-source collection of flash cards designed for reviewing algorithms, data structures, and system design concepts, specifically curated for technical interview preparation. The project organizes knowledge into atomic question-and-answer pairs and incorporates spaced repetition scheduling to optimize long-term memory retention. The flash card catalog covers a broad range of computer science topics, including classic sorting algorithms like quicksort and mergesort, data structure operations for arrays, trees, heaps, tries, and graphs, as well as bit manipulation techniques for
Includes flash cards explaining stack data structure implementations.
此仓库是算法问题解决的综合库,提供计算机科学基础挑战的参考实现。它旨在作为技术面试准备和竞赛编程训练的资源,专注于掌握编码评估所需的常见模式和数据结构。 该项目通过提供强调符合习惯的 Python 用法和性能优化的解决方案而脱颖而出。它涵盖了广泛的算法技术,包括贪心选择、动态规划、图论和二分查找,同时提供关于分析执行复杂度以识别特定任务最高效逻辑的指导。 除了核心算法外,该集合还包括栈、队列和邻接表图表示等标准数据结构的实现。它还提供了集成外部 Web 服务和管理结构化数据的示例,确保了竞赛环境和实际软件开发所需的广泛技术技能覆盖。
Provides efficient last-in-first-out stack implementations for use in algorithmic problem solving.
This project is a comprehensive reference guide for computer science fundamentals, providing structured summaries of essential data structures and algorithmic principles. It serves as a technical resource for developers to review core programming concepts, memory layouts, and operational characteristics required for software development and technical assessments. The collection distinguishes itself by offering concise, implementation-focused documentation for a wide range of standard techniques. It covers the mechanics of various sorting and searching algorithms, graph and tree traversal stra
Supports push and pop operations for managing LIFO data collections.