Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

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...