Logo

Programming-Idioms

  • Clojure

Idiom #40 Graph with adjacency lists

Declare a Graph data structure in which each Vertex has a collection of its neighbouring vertices.

struct Vertex
{
	float x, y, z;
	Vertex* [] adjacentVertices;
}

New implementation...