1 / 8

Graph Systems

Graph Systems. Howles. Graph Representations. Sometimes the data naturally fits the structure of a graph Nodes (vertices) Edges (links). Advantages of Graphs. Usually well understood – a typical topic in even introductory data structure and algorithms courses Some good APIs exist

altessa
Download Presentation

Graph Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Graph Systems Howles

  2. Graph Representations • Sometimes the data naturally fits the structure of a graph • Nodes (vertices) • Edges (links)

  3. Advantages of Graphs • Usually well understood – a typical topic in even introductory data structure and algorithms courses • Some good APIs exist • Clear understanding of the model

  4. Types • Directed Graph (DiGraph) • Undirected Graph • The link/edges carry data about relationships between the nodes (vertices)

  5. Typical Measures • Indegree – possible relevance if high (links in a network structure) • Outdegree – possible relevance (shows relationships • Either may have different relevance depending on whether the graph is directed or undirected

  6. Measures • Number of paths to a given node (vertex) • Shortest path between two nodes • Coloring algorithms • Minimal spanning tree • .. And others, depending on the application

  7. Graph Database System • Increasing applications and interest in graph-based structures (Internet, social networking interactions) have produced specialized database support • Data is modeled as nodes and edges • Nodes may have properties • An edge may have a label or role • Credit: Jennifer Widom

  8. Examples • A graph of people (nodes) may represent one or more role (parents, friends) • Neo4j (implemented in Java) , FlockDB(Twitter), Pregel (Google)

More Related