Essay record

Graph Search: Adjacency Matrix

Record
Essay / / 1 min read / 80 words
Tags
Unfiled

DISCLOSURE: Some links may be affiliate links. Details

For each coordinate in the matrix, place a 1 if the nodes are connected and a 0 if they aren’t.  In the case of a weighted graph, replace the one with the respective weight.

Adjacency Matrix

Node1 2 34 5 6
11 1 0 0 1 0
21 0 1 0 1 0
301 0 1 0 0
400 1 0 1 1
511 0 1 0 0
600 0 1 0 0

Built with CloudSeed Rust