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

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

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

2 مستودعات

Awesome GitHub RepositoriesSequence Partitioning

Algorithms for dividing sequences into optimal sub-segments based on specific constraints.

Distinct from Partition Problem Solving: Broadens from specific subset-sum partition problems to general sequence partitioning like longest common subsequences

Explore 2 awesome GitHub repositories matching software engineering & architecture · Sequence Partitioning. Refine with filters or upvote what's useful.

Awesome Sequence Partitioning GitHub Repositories

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

    cloudevents/spec

    5,801عرض على GitHub↗

    CloudEvents is an open specification for describing event data in a common format across cloud platforms and services. It defines a standard structure and set of metadata attributes for events, enabling interoperability across different systems so producers and consumers can exchange events without custom translation. The specification provides a protocol-agnostic serialization framework that maps CloudEvents attributes and payloads to multiple serialization formats including JSON, Avro, and Protobuf, and defines transport bindings for mapping events onto protocols like HTTP, AMQP, Kafka, MQTT

    Defines how to number events within partitions for gap, duplicate, and ordering detection.

    Pythonserverlessspecification
    عرض على GitHub↗5,801
  • morelinq/morelinqالصورة الرمزية لـ morelinq

    morelinq/MoreLINQ

    3,827عرض على GitHub↗

    MoreLINQ is a functional programming toolkit and extension library for .NET that augments LINQ to Objects with advanced operators for sequence manipulation and analysis. It provides a set of tools for declarative data transformation, leveraging lazy evaluation and composition to handle complex object sequences. The library is distinguished by its specialized capabilities for combinatorial generation, including the production of permutations, subsets, and Cartesian products. It also provides advanced sequence joining options, such as full, left, and right outer joins, and supports complex data

    Splits sequences into multiple sets based on predicates or keys.

    C#dotnetlinq
    عرض على GitHub↗3,827
  1. Home
  2. Software Engineering & Architecture
  3. Algorithmic Problem Solving
  4. Knapsack Problem Solving
  5. Partition Problem Solving
  6. Sequence Partitioning

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

  • Event Sequence NumberersNumber events within a partition so consumers can detect gaps, duplicates, or out-of-order delivery. **Distinct from Sequence Partitioning:** Distinct from Sequence Partitioning: focuses on numbering events for gap/duplicate detection, not dividing sequences into sub-segments.
  • Sequence PartitionersUtilities for splitting sequences into sized buckets or segments. **Distinct from Sequence Partitioning:** Distinct from Sequence Partitioning: focuses on general-purpose bucket partitioning rather than algorithmic partition problem solving.