D
Dicread
InicioDiccionarioAadjacency list

Nota: La traducción de esta entrada está actualmente en revisión de calidad, por lo que parte del contenido se muestra temporalmente solo en inglés.

Esta entrada aún no se ha traducido a tu idioma, así que se muestra el original a continuación.

adjacency list

adjacency list
Noun
pl: adjacency lists

This term is a technical specification within graph theory and computer science. It describes a memory-efficient way to store a graph, particularly when the graph is sparse, meaning most possible connections between nodes do not exist. It is typically contrasted with an adjacency matrix, which uses a two-dimensional array and consumes more space regardless of the number of edges.

In practical implementation, an adjacency list is often realized as an array of linked lists or dynamic arrays. Because it only stores existing edges, it allows for faster iteration over the neighbors of a specific vertex, making it the preferred choice for algorithms like Breadth-First Search (BFS) and Depth-First Search (DFS).

Meanings

Nounadjacency list

A data structure used in computer science to represent a graph, consisting of a collection of unordered lists where each list describes the set of neighbors of a particular vertex.

Related Words

Última actualización: May 2026Reportar un error