awesome-repositories.com

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

استكشفعمليات بحث منسقةOpen-source alternativesSelf-hosted softwareالمدونةخريطة الموقع
المشروعحولHow we rankالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
awesome-repositories.comالمدونة
التصنيفات

6 مستودعات

Awesome GitHub RepositoriesPrefix-Based Pattern Matching Algorithms

Algorithms for optimizing pattern matching using prefix function analysis to skip redundant comparisons.

Distinct from String Processing Algorithms: Focuses on prefix-based optimization, distinct from general string processing.

Explore 6 awesome GitHub repositories matching software engineering & architecture · Prefix-Based Pattern Matching Algorithms. Refine with filters or upvote what's useful.

Awesome Prefix-Based Pattern Matching Algorithms GitHub Repositories

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

    OI-wiki/OI-wiki

    26,176عرض على GitHub↗

    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

    Provides prefix-based algorithms to optimize pattern searching performance.

    TypeScriptacm-icpcacm-icpc-handbookalgorithms
    عرض على GitHub↗26,176
  • wangzheng0822/algoالصورة الرمزية لـ wangzheng0822

    wangzheng0822/algo

    23,159عرض على GitHub↗

    This project is a data structures and algorithms library providing a collection of fifty standard code implementations for managing data and solving common computational problems. It serves as an algorithm implementation reference and study resource for educational use. The codebase covers graph theory implementations for modeling networks and performing searches, as well as string pattern matching libraries for the retrieval of character sequences. It includes a collection of hierarchical data structures, such as binary search trees and priority heaps, and provides optimized solutions for dy

    Organizes character sequences into a hierarchical structure for fast string pattern retrieval.

    Python
    عرض على GitHub↗23,159
  • techarohq/anubisالصورة الرمزية لـ TecharoHQ

    TecharoHQ/anubis

    17,067عرض على GitHub↗

    Anubis is a command-line security reconnaissance framework designed for subdomain enumeration and attack surface mapping. It functions as a utility for security professionals to identify, catalog, and visualize the external digital footprint of an organization by discovering all subdomains associated with a target domain. The tool distinguishes itself through a modular resolver pipeline that integrates passive reconnaissance from third-party security APIs and public certificate transparency logs. It combines this data with active discovery methods, including recursive DNS brute-forcing and al

    Generates potential subdomains by applying algorithmic transformations and naming patterns to known infrastructure.

    Godefensesecurity
    عرض على GitHub↗17,067
  • projectdiscovery/subfinderالصورة الرمزية لـ projectdiscovery

    projectdiscovery/subfinder

    13,105عرض على GitHub↗

    Subfinder is a security reconnaissance framework designed for subdomain enumeration and attack surface management. It functions as a discovery engine that identifies and maps internet-exposed infrastructure, cloud-hosted assets, and network ranges to maintain a comprehensive inventory of an organization's digital footprint. The project distinguishes itself through a modular, template-driven scanning engine that executes security checks against discovered assets. It leverages cloud-native asset discovery to query provider APIs and infrastructure metadata, while supporting distributed agent orc

    Generates targeted subdomain variations using naming patterns and dynamic payloads to improve discovery efficiency.

    Gobugbountyhackinghacktoberfest
    عرض على GitHub↗13,105
  • mission-peace/interviewالصورة الرمزية لـ mission-peace

    mission-peace/interview

    11,306عرض على GitHub↗

    This project is a comprehensive library of reference implementations for fundamental data structures and algorithms, designed to support technical interview preparation and software engineering assessments. It provides a structured collection of computational techniques for solving complex problems involving arrays, strings, graphs, trees, and mathematical analysis. The library distinguishes itself by offering specialized implementations for advanced topics, including concurrent programming patterns and geometric algorithms. It features thread-safe primitives for managing shared state and tas

    Applies the Z algorithm to identify occurrences of a pattern within a string by precomputing prefix information.

    Java
    عرض على GitHub↗11,306
  • 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

    Demonstrates prefix-based pattern matching logic through simulations of the KMP algorithm.

    algorithmsbaseinterview-practice
    عرض على GitHub↗10,702
  1. Home
  2. Software Engineering & Architecture
  3. String Processing Algorithms
  4. Prefix-Based Pattern Matching Algorithms

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

  • Hostname Permutation GeneratorsAlgorithms that generate potential subdomains by applying naming patterns to known hostnames. **Distinct from Prefix-Based Pattern Matching Algorithms:** Distinct from Prefix-Based Pattern Matching: focuses on generating domain variants for discovery rather than optimizing string comparison algorithms.
  • TriesHierarchical tree structures used for efficient retrieval and matching of string prefixes. **Distinct from Prefix-Based Pattern Matching Algorithms:** Specializes prefix-based pattern matching by specifically implementing the trie data structure.