About 4,170,000 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

    Jul 23, 2025 · Graph is a non-linear data structure like tree data structure. The limitation of tree is, it can only represent hierarchical data. For situations where nodes or vertices are randomly connected with …

  3. 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.

  4. Graphs - Ada Computer Science

    This page introduces you to the different types of graph. You can also discover more about how graphs are implemented and how graphs are traversed, as well as the use of trees.

  5. 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 relationships...

  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 with its …

  7. CS106B Graphs - web.stanford.edu

    Oct 13, 2025 · Graphs are node-based structures (or "linked structures"), and they should look somewhat familiar already from our explorations of linked lists and trees earlier this quarter. Some …

  8. An Introduction to Graph Theory - DataCamp

    Aug 21, 2024 · In computer science, graph theory underpins many algorithms and data structures used to represent networks such as the internet, social networks, and communication systems.

  9. Graphs Computer Science | OCR A Level Revision Notes

    Oct 2, 2024 · Learn about Graphs for your A Level Computer Science exam. This revision note includes nodes, edges, traversals in graph theory and applications in computing.

  10. Introduction to Graph Data Structure - GeeksforGeeks

    Nov 24, 2025 · A graph is a non-linear data structure made up of vertices (nodes) and edges (connections) that represent relationships between objects. Unlike arrays or linked lists, graphs do …