About 3,200 results
Open links in new tab
  1. Graph (abstract data type) - Wikipedia

    In computer science, a graph is an abstract data type that is meant to implement the undirected graph and directed graph concepts from the field of graph theory within mathematics.

  2. Graph Algorithms - GeeksforGeeks

    Jan 26, 2026 · Graph is a non-linear data structure like tree data structure. A Graph is composed of a set of vertices (V) and a set of edges (E). The vertices are connected with each other …

  3. Graphs - Ada Computer Science

    A graph is a data structure that can be used to represent complex, non-linear relationships. A graph consists of nodes (also called vertices) that are connected by edges (also called arcs).

  4. An Introduction to Graph Theory - DataCamp

    Aug 21, 2024 · Explore the essentials of graph theory with this beginner's guide. Learn about vertices, edges, and various graph types to understand complex networks and applications.

  5. Graphs in Computer Science

    Graphs are mathematical concepts that have found many uses in computer science. Graphs come in many different flavors, many of which have found uses in computer programs.

  6. Introduction to Graph Theory | Baeldung on Computer Science

    Jun 7, 2024 · In this tutorial, we’ll discuss some of the most important data structures in computer science – graphs. We’ll first study the basics of graph theory, in order to familiarize ourselves …

  7. Two vertices are adjacent if they are connected by a single edge. The collection of vertices that are adjacent to a vertex v are referred to as v’s neighbors. A path is a sequence of edges that …

    Missing:
    • computer science
    Must include:
  8. Graphs and graph theory in computer science - Cprogramming.com

    What is a graph? A graph is a way of representing connections between places. Mathematically, a graph is a collection of nodes and edges. Nodes are locations that are connected together by …

  9. Describing graphs (article) | Algorithms | Khan Academy

    When we represent a graph or run an algorithm on a graph, we often want to use the sizes of the vertex and edge sets in asymptotic notation. For example, suppose that we want to talk about …

  10. Graphs in Computer Science: A Comprehensive Overview of an

    May 26, 2023 · In computer science, a graph is an abstract representation of a set of objects, known as vertices or nodes, connected by a set of edges. Graphs offer a flexible way to depict …