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

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

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

4 مستودعات

Awesome GitHub RepositoriesGrid Path Optimizations

Algorithms for finding optimal paths, such as the longest or shortest, within a two-dimensional grid structure.

Distinct from Shortest Path Algorithms: Focuses on grid-based path optimization specifically within dynamic programming contexts, distinct from general graph shortest path algorithms.

Explore 4 awesome GitHub repositories matching scientific & mathematical computing · Grid Path Optimizations. Refine with filters or upvote what's useful.

Awesome Grid Path Optimizations 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

    The project provides algorithmic solutions for finding the longest path in a grid with obstacles.

    JavaScriptalgoalgorithmalgorithms
    عرض على GitHub↗55,758
  • apachecn/apachecn-algo-zhالصورة الرمزية لـ apachecn

    apachecn/apachecn-algo-zh

    11,140عرض على GitHub↗

    This project is an algorithm study resource, a centralized LeetCode solution repository, and a technical interview study guide. It provides Chinese translations of textbooks and guides on data structures and algorithms for academic study and professional preparation. The project distinguishes itself by delivering multi-language solution repositories and translated academic materials through a static site generation model. This architecture enables compile-time content translation and offline-first delivery of educational assets as static files. The repository covers a wide range of algorithm

    Implements dynamic programming to count unique paths from start to finish in a grid.

    JavaScriptalgorithmcodingdata-structure
    عرض على GitHub↗11,140
  • mandliya/algorithms_and_data_structuresالصورة الرمزية لـ mandliya

    mandliya/algorithms_and_data_structures

    6,145عرض على GitHub↗

    هذا المشروع عبارة عن مجموعة شاملة من مكتبات وأدوات C++ توفر تطبيقات مرجعية لهياكل البيانات، وخوارزميات الرسوم البيانية، والمنطق الثنائي (bitwise logic). يعمل كمرجع لخوارزميات C++ يحتوي على أكثر من 180 مسألة برمجية محلولة ومجموعة أدوات متخصصة للبرمجة التنافسية. يتميز المستودع بمكتبات واسعة النطاق لمعالجة البتات منخفضة المستوى لفحوصات التكافؤ، واكتشاف ترتيب البايتات (endianness)، والمنطق القائم على XOR. كما يوفر مجموعة واسعة من الحلول المرجعية للتحديات الخوارزمية المعقدة التي تتضمن التراجع (backtracking)، ونظرية الرسوم البيانية، والبرمجة الديناميكية. تغطي مساحة القدرات منظمات البيانات الخطية والهرمية الأساسية، بما في ذلك القوائم المرتبطة، والمكدسات، والطوابير، وأشجار البحث الثنائية. يتضمن مجموعة كاملة من خوارزميات الرسوم البيانية للبحث عن المسارات والأشجار الممتدة، وطرق متنوعة للفرز والبحث، وتحويلات المصفوفات، وأدوات معالجة النصوص. بالإضافة إلى ذلك، يغطي الدوال الحسابية الرياضية، وضغط البيانات بدون فقدان، وشفرات التشفير الأساسية.

    Computes the number of distinct paths in a 2D grid using dynamic programming.

    C++algorithmbit-manipulationc
    عرض على GitHub↗6,145
  • soapyigu/leetcode-swiftالصورة الرمزية لـ soapyigu

    soapyigu/LeetCode-Swift

    4,958عرض على GitHub↗

    LeetCode-Swift is a collection of algorithm solutions written in Swift, designed for coding interview preparation. Each solution is implemented as a self-contained function with no external dependencies, making it easy to run and test. The repository organizes solutions by topic and company, and every file includes time and space complexity annotations, allowing quick evaluation of algorithmic efficiency. What sets this repository apart is its flat file structure and the way solutions are tagged with the companies that asked them in interviews, enabling targeted practice. All code resides in

    Counts unique paths from top-left to bottom-right in a grid using 2D dynamic programming.

    Swiftalgorithmdata-structuresinterview
    عرض على GitHub↗4,958
  1. Home
  2. Scientific & Mathematical Computing
  3. Numerical and Mathematical Foundations
  4. Algorithms and Complexity
  5. Algorithms
  6. Graph Processing
  7. Shortest Path Algorithms
  8. Grid Path Optimizations

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

  • Obstacle Path CountingDynamic programming algorithms that count unique paths through grids while avoiding obstacles. **Distinct from Grid Path Optimizations:** Distinct from Grid Path Optimizations: counts all valid paths rather than finding a single optimal path.
  • Unique Path CountingDynamic programming algorithms that count the number of distinct paths through a grid moving only down or right. **Distinct from Grid Path Optimizations:** Distinct from Grid Path Optimizations: counts all unique paths rather than finding a single optimal path.