Skip to content

Instantly share code, notes, and snippets.

View mszyndel's full-sized avatar

Mike Szyndel mszyndel

View GitHub Profile
-module(dijkstra).
-export([read_graph/0, perform/3]).
% S - wierzchołki sprawdzone
% Q - wierzchołki niesprawdzone
% tupla - {V, C, P} - Vertex, Cost, Parent
parse(0, List) ->
List;