awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesStack-Based Queues

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.

Explore 5 awesome GitHub repositories matching education & learning resources · Stack-Based Queues. Refine with filters or upvote what's useful.

Awesome Stack-Based Queues GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • azl397985856/leetcodeالصورة الرمزية لـ azl397985856

    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

    Simulates a first-in-first-out queue by managing data between two stacks.

    JavaScriptalgoalgorithmalgorithms
    عرض على GitHub↗55,758
  • greyireland/algorithm-patternالصورة الرمزية لـ greyireland

    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-baseالصورة الرمزية لـ chefyuan

    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
  • cavszhouyou/front-end-interview-notebookالصورة الرمزية لـ CavsZhouyou

    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/algoالصورة الرمزية لـ hoanhan101

    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
  4. Stack-Based Queues

استكشف الوسوم الفرعية

  • Mechanism IllustrationsVisual demonstrations of the core behavioral principles of data structures. **Distinct from Stack-Based Queues:** Focuses on illustrating the LIFO/FIFO principles rather than a specific implementation like stack-based queues.