addEdge

open override fun addEdge(node1: Any, node2: Any, weight: Double)

Adds an edge between two nodes in the graph, and creates the nodes if they don't exist.

Parameters

node1

The starting node of the edge.

node2

The ending node of the edge.

weight

The weight of the edge, for example used to calculate distances with dijkstra.


open override fun addEdge(node1: Any, node2: Any)

Adds an unweighted edge between two nodes in the graph, and creates the nodes if they don't exist.

Parameters

node1

The starting node of the edge.

node2

The ending node of the edge.