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

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

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

7 个仓库

Awesome GitHub RepositoriesQueue Implementations

Educational implementations of queue data structures and related operations.

Distinguishing note: None of the candidates matched; this focuses on queue-specific data structures.

Explore 7 awesome GitHub repositories matching education & learning resources · Queue Implementations. Refine with filters or upvote what's useful.

Awesome Queue Implementations GitHub Repositories

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

    azl397985856/leetcode

    55,758在 GitHub 上查看↗

    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

    Provides educational implementations of first-in-first-out queue data structures.

    JavaScriptalgoalgorithmalgorithms
    在 GitHub 上查看↗55,758
  • keon/algorithmskeon 的头像

    keon/algorithms

    25,269在 GitHub 上查看↗

    This repository is a structured educational archive of classic computer science algorithms and data structures implemented in Python. It serves as a reference library designed for study and technical skill development, providing clean, readable examples of fundamental computational techniques rather than production-ready software components. The project distinguishes itself through its idiomatic approach, utilizing native language features and standard library conventions to demonstrate algorithmic logic clearly. Each implementation is organized into a hierarchical directory structure that mi

    Queue — a named example documented in this learning resource.

    Pythonalgorithmalgorithmscompetitive-programming
    在 GitHub 上查看↗25,269
  • greyireland/algorithm-patterngreyireland 的头像

    greyireland/algorithm-pattern

    15,465在 GitHub 上查看↗

    This project is an algorithm template library and coding interview study guide providing reusable code patterns for common data structures and algorithms. It serves as a reference for optimized strategies and a structured learning path to build proficiency in algorithmic problem solving and competitive programming. The library focuses on standardized implementations of key algorithmic patterns, including sliding windows, backtracking, dynamic programming, and binary search. It provides specific templates for managing binary search trees, searching rotated sorted arrays, and executing divide-a

    Demonstrates how to simulate first-in-first-out queue behavior using two last-in-first-out stacks.

    Goalgoalgorithmleetcode
    在 GitHub 上查看↗15,465
  • chefyuan/algorithm-basechefyuan 的头像

    chefyuan/algorithm-base

    10,702在 GitHub 上查看↗

    algorithm-base is an educational library and study guide designed for simulating algorithms and studying data structures. It functions as an execution visualizer that renders step-by-step state changes and pointer updates through animated simulations to illustrate how data movement works. The project distinguishes itself by mapping conceptual logic directly to multi-language source code implementations. It utilizes a comparative analysis framework to evaluate different algorithmic strategies based on stability, time complexity, and space complexity, while organizing problems by underlying mec

    Illustrates the first-in-first-out mechanism using animations to demonstrate enqueueing and dequeueing.

    algorithmsbaseinterview-practice
    在 GitHub 上查看↗10,702
  • amejiarosario/dsa.js-data-structures-algorithms-javascriptamejiarosario 的头像

    amejiarosario/dsa.js-data-structures-algorithms-javascript

    7,768在 GitHub 上查看↗

    This project is a computer science educational resource and library providing implementations of data structures and algorithms in JavaScript. It serves as an algorithm implementation reference and a toolkit for building foundational data containers, including a collection of sorting algorithms and a guide for learning time and space complexity. The project differentiates itself by pairing class-based implementations with Big O analysis to illustrate asymptotic complexity. It includes a non-linear data structure toolkit featuring self-balancing trees, hash maps, and graphs, alongside comparis

    Implements first-in-first-out queue data structures and related operations.

    JavaScriptalgorithmalgorithmsbook
    在 GitHub 上查看↗7,768
  • cavszhouyou/front-end-interview-notebookCavsZhouyou 的头像

    CavsZhouyou/Front-End-Interview-Notebook

    7,739在 GitHub 上查看↗

    This project is a front-end interview study guide and a collection of structured notes designed for technical job preparation. It serves as a comprehensive reference for web technologies, common technical interview questions, and JavaScript algorithm implementation. The notebook distinguishes itself by integrating specialized guides for web performance optimization, browser API documentation, and JavaScript algorithm references. It provides a structured approach to solving coding challenges involving data structures like binary trees, linked lists, and array manipulation. The content covers

    Demonstrates how to implement first-in-first-out queue behavior using two stack structures.

    在 GitHub 上查看↗7,739
  • hoanhan101/algohoanhan101 的头像

    hoanhan101/algo

    3,678在 GitHub 上查看↗

    This project is a Go algorithm implementation library and a reference for data structures. It serves as a collection of solved coding interview problems and an algorithmic pattern collection, providing a reference of over 100 common challenges implemented in Go. The library focuses on specific problem-solving strategies, including sliding windows, two pointers, and dynamic programming. It provides coded examples of standard sorting, searching, and graph traversal techniques to facilitate the study of algorithmic patterns. The repository covers a broad range of capabilities, including array a

    Simulates first-in-first-out behavior by managing two stacks to handle enqueuing and dequeuing operations.

    Go
    在 GitHub 上查看↗3,678
  1. Home
  2. Education & Learning Resources
  3. Queue Implementations

探索子标签

  • Lock-Free QueuesQueue implementations that avoid traditional locking mechanisms to maximize concurrent throughput. **Distinct from Queue Implementations:** Focuses on lock-free concurrency instead of general educational queue data structures.
  • MaxQueue VisualizationsVisual simulations of queues that maintain maximum element tracking via monotonic deques. **Distinct from Queue Implementations:** Focuses on the visual implementation of the MaxQueue pattern rather than general queue operations.
  • Stack-BasedImplementations of queues that simulate FIFO behavior using stack structures. **Distinct from Stack-Based Queues:** The feature describes implementing a stack using queues, whereas the sibling describes queues using stacks.
  • Stack-Based Queues1 个子标签Queues implemented using one or more stacks to simulate first-in-first-out behavior. **Distinct from Queue Implementations:** Specific to the structural simulation of a queue using stacks, whereas the parent is general queue implementations.