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

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

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

Open-source alternatives to Graphlib

30 open-source projects similar to aio-arch/graphlib, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Graphlib alternative.

  • xtaci/algorithmsxtaci 的头像

    xtaci/algorithms

    5,454在 GitHub 上查看↗

    This is a collection of classical algorithms and data structures implemented as a header-only C++ library. It provides a suite of tools for general algorithm implementation, including data structure management, graph theory analysis, and string processing. The library is distinguished by its specialized toolkits for cryptographic hashing and encoding, featuring implementations of MD5, SHA-1, and Base64. It also includes advanced capabilities for high-performance string processing via suffix trees and arrays, as well as computational number theory for primality testing and arbitrary-precision

    C++
    在 GitHub 上查看↗5,454
  • adrianbrad/queueadrianbrad 的头像

    adrianbrad/queue

    357在 GitHub 上查看↗

    ⏪️ Go package providing multiple queue implementations. Developed in a thread-safe generic way.

    Go
    在 GitHub 上查看↗357
  • bits-and-blooms/bloombits-and-blooms 的头像

    bits-and-blooms/bloom

    2,791在 GitHub 上查看↗

    Go package implementing Bloom filters, used by many important systems

    Go
    在 GitHub 上查看↗2,791
  • agnivade/levenshteinagnivade 的头像

    agnivade/levenshtein

    470在 GitHub 上查看↗

    Go implementation to calculate Levenshtein Distance.

    Go
    在 GitHub 上查看↗470
  • alandefreitas/smallalandefreitas 的头像

    alandefreitas/small

    150在 GitHub 上查看↗

    C++ small containers

    C++
    在 GitHub 上查看↗150

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Find more with AI search
  • algorithm-ninja/cpp-btreealgorithm-ninja 的头像

    algorithm-ninja/cpp-btree

    80在 GitHub 上查看↗

    Git mirror of the official (mercurial) repository of cpp-btree

    C
    在 GitHub 上查看↗80
  • alvii147/gloopalvii147 的头像

    alvii147/gloop

    28在 GitHub 上查看↗

    Go utility library for convenient looping using Go's range-over-func feature

    Go
    在 GitHub 上查看↗28
  • amallia/go-efamallia 的头像

    amallia/go-ef

    41在 GitHub 上查看↗

    A Go implementation of the Elias-Fano encoding

    Go
    在 GitHub 上查看↗41
  • arximboldi/immerarximboldi 的头像

    arximboldi/immer

    2,854在 GitHub 上查看↗

    Postmodern immutable and persistent data structures for C++ — value semantics at scale

    C++
    在 GitHub 上查看↗2,854
  • athari/yalinqoAthari 的头像

    Athari/YaLinqo

    453在 GitHub 上查看↗

    Yet Another LINQ to Objects for PHP Simplified BSD

    PHP
    在 GitHub 上查看↗453
  • aurelien-rainone/go-rquadaurelien-rainone 的头像

    aurelien-rainone/go-rquad

    141在 GitHub 上查看↗

    :pushpin: State of the art point location and neighbour finding algorithms for region quadtrees, in Go

    Go
    在 GitHub 上查看↗141
  • axiomhq/hyperloglogaxiomhq 的头像

    axiomhq/hyperloglog

    1,038在 GitHub 上查看↗

    HyperLogLog with lots of sugar (Sparse, LogLog-Beta bias correction and TailCut space reduction) brought to you by Axiom

    Go
    在 GitHub 上查看↗1,038
  • barweiss/go-tuplebarweiss 的头像

    barweiss/go-tuple

    100在 GitHub 上查看↗

    Go 1.18+ generic tuple

    Go
    在 GitHub 上查看↗100
  • bits-and-blooms/bitsetbits-and-blooms 的头像

    bits-and-blooms/bitset

    1,505在 GitHub 上查看↗

    Go package implementing bitsets

    Go
    在 GitHub 上查看↗1,505
  • agext/levenshteinagext 的头像

    agext/levenshtein

    92在 GitHub 上查看↗

    Levenshtein distance and similarity metrics with customizable edit costs and Winkler-like bonus for common prefix.

    Go
    在 GitHub 上查看↗92
  • blackrabbitt/mspmBlackRabbitt 的头像

    BlackRabbitt/mspm

    29在 GitHub 上查看↗

    Multi-String Pattern Matching Algorithm Using TrieNode

    Go
    在 GitHub 上查看↗29
  • blevesearch/bleveblevesearch 的头像

    blevesearch/bleve

    10,986在 GitHub 上查看↗

    Bleve is a search indexing engine library written in Go, designed to provide full-text search and document retrieval capabilities for embedded application data. It functions as a framework for indexing structured or unstructured information, allowing developers to build searchable collections that support complex query logic and data analysis. The engine distinguishes itself through a pluggable analysis pipeline that normalizes text before indexing, alongside support for vector similarity search to identify semantically related content. It utilizes finite-state transducer automata for efficie

    Go
    在 GitHub 上查看↗10,986
  • bobg/combobobg 的头像

    bobg/combo

    3在 GitHub 上查看↗

    Combinatorial operations for Go

    Go
    在 GitHub 上查看↗3
  • bobg/go-genericsbobg 的头像

    bobg/go-generics

    87在 GitHub 上查看↗

    This is go-generics, a collection of typesafe generic utilities for slices, sets, and goroutine patterns in Go.

    Go
    在 GitHub 上查看↗87
  • bobg/hashsplitbobg 的头像

    bobg/hashsplit

    32在 GitHub 上查看↗

    Hashsplitting is a way of dividing a byte stream into pieces based on the stream's content rather than on any predetermined chunk size. As the Splitter reads the stream it maintains a rolling checksum of the last several bytes. A chunk boundary occurs when the rolling checksum has enough…

    Go
    在 GitHub 上查看↗32
  • bobg/merklebobg 的头像

    bobg/merkle

    22在 GitHub 上查看↗

    Merkle hash trees

    Go
    在 GitHub 上查看↗22
  • bw-hro/sqlitemapbw-hro 的头像

    bw-hro/sqlitemap

    8在 GitHub 上查看↗

    sqlitemap is a lightweight C++ wrapper around SQLite that provides a simple, map-like interface.

    C++
    在 GitHub 上查看↗8
  • cakephp/collectioncakephp 的头像

    cakephp/collection

    90在 GitHub 上查看↗

    READ-ONLY Collection library in CakePHP. This repo is a split of the main code that can be found in https://github.com/cakephp/cakephp

    PHP
    在 GitHub 上查看↗90
  • cameron314/concurrentqueuecameron314 的头像

    cameron314/concurrentqueue

    12,070在 GitHub 上查看↗

    ConcurrentQueue is a header-only C++ template library that provides a lock-free data structure for multi-producer multi-consumer thread communication. It functions as a synchronization primitive designed to coordinate data flow between concurrent execution units using atomic operations rather than traditional mutex locking. The library distinguishes itself through a design that minimizes contention and synchronization overhead. It utilizes sub-queue token mapping to distribute workloads across partitioned internal queues and supports bulk operations to transfer multiple data elements in singl

    C++
    在 GitHub 上查看↗12,070
  • cbergoon/merkletreeC

    cbergoon/merkletree

    0在 GitHub 上查看↗
    在 GitHub 上查看↗0
  • cocoonspace/fsmcocoonspace 的头像

    cocoonspace/fsm

    90在 GitHub 上查看↗

    Finite State Machine package in Go

    Go
    在 GitHub 上查看↗90
  • cristianbuse/vba-fastdictionarycristianbuse 的头像

    cristianbuse/VBA-FastDictionary

    65在 GitHub 上查看↗

    Fast Native Dictionary for VBA compatible with Windows and Mac

    VBA
    在 GitHub 上查看↗65
  • cweiske/jsonmappercweiske 的头像

    cweiske/jsonmapper

    1,574在 GitHub 上查看↗

    Map nested JSON structures onto PHP classes

    PHP
    在 GitHub 上查看↗1,574
  • daichi-m/go18dsdaichi-m 的头像

    daichi-m/go18ds

    48在 GitHub 上查看↗

    Implementation of various data structures and algorithms in Go.

    Go
    在 GitHub 上查看↗48
  • accelerationnet/accessAccelerationNet 的头像

    AccelerationNet/access

    91在 GitHub 上查看↗

    A common lisp library to unify access to common dictionary-like data-structures

    Common Lisp
    在 GitHub 上查看↗91