awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 dépôts

Awesome GitHub RepositoriesDistance-Based Node Discovery

Mechanisms for locating nodes within a specific number of hops or a defined distance from a seed node.

Distinct from Isolated Node Discovery: The candidates focus on network cluster discovery or statistical outliers, not graph hop-distance discovery.

Explore 4 awesome GitHub repositories matching data & databases · Distance-Based Node Discovery. Refine with filters or upvote what's useful.

Awesome Distance-Based Node Discovery GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • sharingsource/logicstack-leetcodeAvatar de SharingSource

    SharingSource/LogicStack-LeetCode

    7,495Voir sur GitHub↗

    LogicStack-LeetCode is a curated repository of solved algorithm problems and data structure implementations, primarily drawn from the LeetCode platform. Its core identity is a structured collection of solutions designed to support technical interview preparation and competitive programming practice, with each solution accompanied by complexity analyses to help engineers understand performance trade-offs. The repository distinguishes itself through its breadth of coverage across fundamental algorithmic patterns and data structures. It includes implementations for array manipulation, string pro

    Implements algorithms for finding all nodes exactly K hops away from a target node in a tree.

    algorithminterview-practiceinterview-questions
    Voir sur GitHub↗7,495
  • memgraph/memgraphAvatar de memgraph

    memgraph/memgraph

    4,163Voir sur GitHub↗

    Memgraph is an in-memory, distributed graph database designed for high-performance labeled property graph management. It utilizes a Cypher query engine for declarative data retrieval and manipulation, providing a scalable knowledge graph backend that integrates vector search and graph traversals. The system distinguishes itself as a real-time graph analytics platform, employing native C++ and CUDA implementations to execute complex network analysis and dynamic community detection on streaming data. It provides specialized support for AI integration, including GraphRAG capabilities, the constr

    The product locates nodes at a specific distance from a starting point via relationship filters.

    C++cyphergraphgraph-algorithms
    Voir sur GitHub↗4,163
  • linyiqun/dataminingalgorithmAvatar de linyiqun

    linyiqun/DataMiningAlgorithm

    3,950Voir sur GitHub↗

    Ce projet est une bibliothèque d'algorithmes de data mining et une implémentation de référence pour le machine learning. Il fournit une collection d'outils pour effectuer la classification, le clustering et l'exploration de règles d'association, ainsi qu'une boîte à outils pour l'optimisation inspirée de la nature. La bibliothèque inclut des utilitaires spécialisés pour l'exploration de graphes et de séquences, permettant l'extraction de sous-graphes fréquents et de modèles séquentiels. Elle dispose également d'un utilitaire de réduction de dimensionnalité qui utilise la théorie des ensembles approximatifs (rough set theory) pour supprimer les attributs redondants des jeux de données. Le projet couvre un large éventail de capacités analytiques, notamment l'analyse de réseaux et de graphes pour classer l'importance des nœuds, ainsi que l'utilisation de modèles probabilistes et d'arbres de décision pour la classification des données. Il implémente également des méthodes basées sur la distance et la densité pour le regroupement de données et des modèles de recherche heuristiques pour résoudre des problèmes d'optimisation complexes.

    Evaluates the importance of nodes in networks using structural ranking and link analysis.

    Java
    Voir sur GitHub↗3,950
  • falkordb/falkordbAvatar de FalkorDB

    FalkorDB/FalkorDB

    3,437Voir sur GitHub↗

    FalkorDB is a high-performance graph database management system and vector graph database. It serves as a knowledge graph construction tool and a GraphRAG knowledge store, integrating structured property graphs with vector search to provide grounded context for large language models. The engine is designed as a multi-tenant graph engine, capable of hosting thousands of isolated datasets within a single instance. The system distinguishes itself by using linear algebra for query execution, treating relationship tensors as matrix multiplications to achieve low-latency multi-hop traversals. It ut

    Measures structural importance of nodes using shortest-path distances for stable entity ranking.

    Ccloud-databasedatabasedatabase-as-a-service
    Voir sur GitHub↗3,437
  1. Home
  2. Data & Databases
  3. Distance-Based Node Discovery

Explorer les sous-tags

  • K-Distance Node SearchAlgorithms for identifying all nodes exactly K hops away from a target node in a tree. **Distinct from Distance-Based Node Discovery:** Specifies a fixed distance search in trees, distinct from general network discovery or string distances.
  • Structural Importance RankingMeasuring the relative importance of nodes based on graph-theoretic metrics like shortest-path distances. **Distinct from Distance-Based Node Discovery:** Focuses on ranking node importance via structural metrics rather than just discovering nodes within a distance.