About 978,000 results
Open links in new tab
  1. What is Directed Graph? | Directed Graph meaning

    Mar 9, 2023 · Directed graphs have many applications across a wide range of fields. Here are some examples: Social networks: Social networks are often modeled as directed graphs, where each person is a vertex and relationships such as friendships or …

  2. DSA Graphs - W3Schools

    A Graph that is not connected, is a Graph with isolated (disjoint) subgraphs, or single isolated vertices. A directed Graph, also known as a digraph, is when the edges between the vertex pairs have a direction. The direction of an edge can represent things like hierarchy or flow.

  3. 13. Directed graphsData Structures and Algorithms

    In this chapter, we consider directed graphs, where edges go only one direction, which is indicated by arrows on edges. For example, the following graph is directed: Dealing with directed graphs is similar to dealing with undirected graphs, but …

  4. What is the difference between an undirected and a directed Graph ...

    Jul 31, 2023 · In this article, we will learn the differences between an undirected and a directed graph., An undirected graph is a graph where the edges do not have a specific direction and it is bidirectional in nature it does not have a parent-child relation …

  5. Types of Graphs in Data Structure with Examples - Guru99

    Sep 26, 2024 · Graphs can be of multiple types, depending on the position of the nodes and edges. Here’re some important types of Graphs: Directed Graph. The edges of the Directed Graph contain arrows that mean the direction. The arrow determines where the edge is pointed to or ends. Here’s an example of the Directed Graph. Directed Graph. We can go from ...

  6. 4.2 Directed Graphs - Princeton University

    Jan 14, 2020 · A directed graph (or digraph) is a set of vertices and a collection of directed edges that each connects an ordered pair of vertices. We say that a directed edge points from the first vertex in the pair and points to the second vertex in the pair.

  7. Directed Graph - Scaler Blog - Scaler Topics

    Sep 30, 2024 · A directed graph is a data structure that stores data in vertices or nodes and these nodes or vertices are connected and also directed by edges (one vertex is directed towards another vertex through an edge) that may have some weight. Directed graph is also called a digraph or directed network.

  8. Graph Data Structure: Types, Uses, Examples, Algorithms

    Understand Graph Data Structure, its types, uses, examples, and algorithms in this tutorial. Learn how to implement and optimize graph-based solutions here.

  9. Graph Data Structure - Programiz

    Directed Graph: A graph in which an edge (u,v) doesn't necessarily mean that there is an edge (v, u) as well. The edges in such a graph are represented by arrows to show the direction of the edge. Graphs are commonly represented in two ways: 1. Adjacency Matrix. An adjacency matrix is a 2D array of V x V vertices.

  10. Graph Data Structure – Explained With Examples

    In this blog post, we will delve into the world of graph data structure, exploring its definition, components, and operations, all accompanied by illustrative examples. Table of Contents: What is a Graph? Types of Graphs a. Undirected Graph b. Directed Graph c. Weighted Graph d. Bipartite Graph. Representing a Graph a. Adjacency Matrix b.

Refresh