Adjazenzstruktur
Adjazenzstruktur refers to a data structure used in computer science to represent a graph. A graph consists of a set of vertices (nodes) and a set of edges connecting these vertices. The adjacency structure defines how these connections are stored and accessed. There are two primary forms of adjacency structures: adjacency matrices and adjacency lists.
An adjacency matrix is a square matrix where rows and columns represent vertices. A value of 1
An adjacency list, on the other hand, represents each vertex with a list of its adjacent vertices.