About 554,000 results
Open links in new tab
  1. Graph and its representations - GeeksforGeeks

    Oct 5, 2024 · Graphs and trees are two fundamental data structures used in computer science to represent relationships between objects. While they share some similarities, they also have distinct differences that make them suitable for different applications.

  2. Graph Data Structure - GeeksforGeeks

    Apr 13, 2025 · Graph Data Structure is a collection of nodes connected by edges. It's used to represent relationships between different entities. If you are looking for topic-wise list of problems on different topics like DFS, BFS, Topological Sort, Shortest Path, etc., …

  3. Graphs in Data Structure: Types, Representation, Operations

    Feb 26, 2025 · In data structures, graphs are a collection of nodes or vertices connected by edges. They are used to represent relationships and connections between different elements, allowing for efficient modelling and analysis of complex systems.

  4. Graph Data Structure – Explained With Examples

    Graph data structures offer a powerful framework for representing relationships and solving complex problems. By understanding the components, types, and operations associated with graphs, you can unlock a wide range of applications in various fields.

  5. Introduction to Graph Data Structure - GeeksforGeeks

    Dec 12, 2024 · Graph Data Structure is a non-linear data structure consisting of vertices and edges. It is useful in fields such as social network analysis, recommendation systems, and computer networks.

  6. Graph in Data Structure | Types & Explanation - Simplilearn

    Feb 25, 2025 · What Are Graphs in Data Structure? Graphs in data structures are non-linear data structures made up of a finite number of nodes or vertices and the edges that connect them.

  7. Representing Graphs in Data Structures - Great Learning

    Dec 17, 2024 · Representation Of Graphs. Graphs can be represented in different ways, each offering unique advantages and trade-offs in terms of space complexity, time complexity, and ease of implementation. Two different ways of representing a graph in data structure are the Adjacency Matrix and Adjacency List. 1. Adjacency Matrix

  8. Graph Data Structure - Online Tutorials Library

    Mathematical graphs can be represented in data structure. We can represent a graph using an array of vertices and a two-dimensional array of edges. Before we proceed further, let's familiarize ourselves with some important terms −. Vertex − Each …

  9. What is a Graph in Data Structures and its Types? - ScholarHat

    Feb 5, 2025 · Graph Representation in Data Structures. Graph representation is a way of structuring and visualizing data using nodes (vertices) and edges. It is also a technique for storing graphs in a computer's memory. In a graph, nodes represent individual entities, while edges represent the relationships or connections between those entities.

  10. Graph Data Structure - Programiz

    A graph data structure is a collection of nodes that have data and are connected to other nodes. In this tutorial, you will understand different representations of graph.

Refresh